]> shimmer.witbreuk.eu Git - UltimateKEYS.git/blob - autohotkey/UltimateKEYS (for AutoHotkey v1.1).ahk
Add files via upload
[UltimateKEYS.git] / autohotkey / UltimateKEYS (for AutoHotkey v1.1).ahk
1 #requires AutoHotkey v1.1
2
3 ; UltimateKEYS (for AutoHotkey v1.1).ahk - 2025-01-22
4
5 ; Website : https://pieter-degroote.github.io/UltimateKEYS/
6
7 ; GitHub : https://github.com/pieter-degroote/UltimateKEYS
8
9 ; License : GNU General Public License Version 3
10
11
12 ; Configuration :
13
14 ; Keyboard layout : US QWERTY
15
16
17
18 #NoEnv ; avoids checking empty variables to see if they are environment variables
19 #KeyHistory 0 ; disables the key history (for privacy and security)
20 ListLines Off ; omits recently executed lines from history (for privacy and security)
21
22 SendMode Input ; optimizes for faster and more reliable input
23
24
25 ; Global Declarations
26
27 cmpSmallA := ComObjCreate("Scripting.Dictionary")
28 cmpSmallB := ComObjCreate("Scripting.Dictionary")
29 cmpSmallC := ComObjCreate("Scripting.Dictionary")
30 cmpSmallD := ComObjCreate("Scripting.Dictionary")
31 cmpSmallF := ComObjCreate("Scripting.Dictionary")
32 cmpSmallG := ComObjCreate("Scripting.Dictionary")
33 cmpSmallH := ComObjCreate("Scripting.Dictionary")
34 cmpSmallI := ComObjCreate("Scripting.Dictionary")
35 cmpSmallL := ComObjCreate("Scripting.Dictionary")
36 cmpSmallM := ComObjCreate("Scripting.Dictionary")
37 cmpSmallN := ComObjCreate("Scripting.Dictionary")
38 cmpSmallO := ComObjCreate("Scripting.Dictionary")
39 cmpSmallP := ComObjCreate("Scripting.Dictionary")
40 cmpSmallQ := ComObjCreate("Scripting.Dictionary")
41 cmpSmallR := ComObjCreate("Scripting.Dictionary")
42 cmpSmallS := ComObjCreate("Scripting.Dictionary")
43 cmpSmallT := ComObjCreate("Scripting.Dictionary")
44 cmpSmallU := ComObjCreate("Scripting.Dictionary")
45 cmpSmallV := ComObjCreate("Scripting.Dictionary")
46 cmpSmallX := ComObjCreate("Scripting.Dictionary")
47 cmpSmallY := ComObjCreate("Scripting.Dictionary")
48 cmpCapitalA := ComObjCreate("Scripting.Dictionary")
49 cmpCapitalB := ComObjCreate("Scripting.Dictionary")
50 cmpCapitalC := ComObjCreate("Scripting.Dictionary")
51 cmpCapitalD := ComObjCreate("Scripting.Dictionary")
52 cmpCapitalG := ComObjCreate("Scripting.Dictionary")
53 cmpCapitalI := ComObjCreate("Scripting.Dictionary")
54 cmpCapitalL := ComObjCreate("Scripting.Dictionary")
55 cmpCapitalN := ComObjCreate("Scripting.Dictionary")
56 cmpCapitalO := ComObjCreate("Scripting.Dictionary")
57 cmpCapitalP := ComObjCreate("Scripting.Dictionary")
58 cmpCapitalR := ComObjCreate("Scripting.Dictionary")
59 cmpCapitalS := ComObjCreate("Scripting.Dictionary")
60 cmpCapitalT := ComObjCreate("Scripting.Dictionary")
61 cmpCapitalV := ComObjCreate("Scripting.Dictionary")
62 cmpCapitalX := ComObjCreate("Scripting.Dictionary")
63 cmpCapitalY := ComObjCreate("Scripting.Dictionary")
64 cmpDigit0 := ComObjCreate("Scripting.Dictionary")
65 cmpDigit1 := ComObjCreate("Scripting.Dictionary")
66 cmpDigit2 := ComObjCreate("Scripting.Dictionary")
67 cmpDigit3 := ComObjCreate("Scripting.Dictionary")
68 cmpDigit4 := ComObjCreate("Scripting.Dictionary")
69 cmpDigit5 := ComObjCreate("Scripting.Dictionary")
70 cmpDigit6 := ComObjCreate("Scripting.Dictionary")
71 cmpDigit7 := ComObjCreate("Scripting.Dictionary")
72 cmpDigit8 := ComObjCreate("Scripting.Dictionary")
73 cmpSpace := ComObjCreate("Scripting.Dictionary")
74 cmpExclam := ComObjCreate("Scripting.Dictionary")
75 cmpQuote := ComObjCreate("Scripting.Dictionary")
76 cmpDollar := ComObjCreate("Scripting.Dictionary")
77 cmpPercent := ComObjCreate("Scripting.Dictionary")
78 cmpApostrophe := ComObjCreate("Scripting.Dictionary")
79 cmpParenLeft := ComObjCreate("Scripting.Dictionary")
80 cmpAsterisk := ComObjCreate("Scripting.Dictionary")
81 cmpPlus := ComObjCreate("Scripting.Dictionary")
82 cmpComma := ComObjCreate("Scripting.Dictionary")
83 cmpMinus := ComObjCreate("Scripting.Dictionary")
84 cmpPeriod := ComObjCreate("Scripting.Dictionary")
85 cmpSlash := ComObjCreate("Scripting.Dictionary")
86 cmpSemicolon := ComObjCreate("Scripting.Dictionary")
87 cmpLess := ComObjCreate("Scripting.Dictionary")
88 cmpEquals := ComObjCreate("Scripting.Dictionary")
89 cmpGreater := ComObjCreate("Scripting.Dictionary")
90 cmpQuestion := ComObjCreate("Scripting.Dictionary")
91 cmpBracketLeft := ComObjCreate("Scripting.Dictionary")
92 cmpBackslash := ComObjCreate("Scripting.Dictionary")
93 cmpBracketRight := ComObjCreate("Scripting.Dictionary")
94 cmpUnderscore := ComObjCreate("Scripting.Dictionary")
95 cmpGrave := ComObjCreate("Scripting.Dictionary")
96 cmpVerticalLine := ComObjCreate("Scripting.Dictionary")
97 cmpTilde := ComObjCreate("Scripting.Dictionary")
98
99
100 ; Compose : Acute Accent (')
101
102 cmpApostrophe.item["a"] := "{u+00e1}" ; (á) a with acute
103 cmpApostrophe.item["A"] := "{u+00c1}" ; (Á) A with acute
104 cmpApostrophe.item["c"] := "{u+0107}" ; (ć) c with acute
105 cmpApostrophe.item["C"] := "{u+0106}" ; (Ć) C with acute
106 cmpApostrophe.item["d"] := "{u+1e09}" ; (ḉ) c with cedilla and acute
107 cmpApostrophe.item["D"] := "{u+1e08}" ; (Ḉ) C with cedilla and acute
108 cmpApostrophe.item["e"] := "{u+00e9}" ; (é) e with acute
109 cmpApostrophe.item["E"] := "{u+00c9}" ; (É) E with acute
110 cmpApostrophe.item["g"] := "{u+01f5}" ; (ǵ) g with acute
111 cmpApostrophe.item["G"] := "{u+01f4}" ; (Ǵ) G with acute
112 cmpApostrophe.item["i"] := "{u+00ed}" ; (í) i with acute
113 cmpApostrophe.item["I"] := "{u+00cd}" ; (Í) I with acute
114 cmpApostrophe.item["j"] := "{u+01ff}" ; (ǿ) o with stroke and acute
115 cmpApostrophe.item["J"] := "{u+01fe}" ; (Ǿ) O with stroke and acute
116 cmpApostrophe.item["k"] := "{u+1e31}" ; (ḱ) k with acute
117 cmpApostrophe.item["K"] := "{u+1e30}" ; (Ḱ) K with acute
118 cmpApostrophe.item["l"] := "{u+013a}" ; (ĺ) l with acute
119 cmpApostrophe.item["L"] := "{u+0139}" ; (Ĺ) L with acute
120 cmpApostrophe.item["m"] := "{u+1e3f}" ; (ḿ) m with acute
121 cmpApostrophe.item["M"] := "{u+1e3e}" ; (Ḿ) M with acute
122 cmpApostrophe.item["n"] := "{u+0144}" ; (ń) n with acute
123 cmpApostrophe.item["N"] := "{u+0143}" ; (Ń) N with acute
124 cmpApostrophe.item["o"] := "{u+00f3}" ; (ó) o with acute
125 cmpApostrophe.item["O"] := "{u+00d3}" ; (Ó) O with acute
126 cmpApostrophe.item["p"] := "{u+1e55}" ; (ṕ) p with acute
127 cmpApostrophe.item["P"] := "{u+1e54}" ; (Ṕ) P with acute
128 cmpApostrophe.item["q"] := "{u+01fd}" ; (ǽ) ae with acute
129 cmpApostrophe.item["Q"] := "{u+01fc}" ; (Ǽ) AE with acute
130 cmpApostrophe.item["r"] := "{u+0155}" ; (ŕ) r with acute
131 cmpApostrophe.item["R"] := "{u+0154}" ; (Ŕ) R with acute
132 cmpApostrophe.item["s"] := "{u+015b}" ; (ś) s with acute
133 cmpApostrophe.item["S"] := "{u+015a}" ; (Ś) S with acute
134 cmpApostrophe.item["u"] := "{u+00fa}" ; (ú) u with acute
135 cmpApostrophe.item["U"] := "{u+00da}" ; (Ú) U with acute
136 cmpApostrophe.item["w"] := "{u+1e83}" ; (ẃ) w with acute
137 cmpApostrophe.item["W"] := "{u+1e82}" ; (Ẃ) W with acute
138 cmpApostrophe.item["x"] := "{u+01fb}" ; (ǻ) a with ring above and acute
139 cmpApostrophe.item["X"] := "{u+01fa}" ; (Ǻ) A with ring above and acute
140 cmpApostrophe.item["y"] := "{u+00fd}" ; (ý) y with acute
141 cmpApostrophe.item["Y"] := "{u+00dd}" ; (Ý) Y with acute
142 cmpApostrophe.item["z"] := "{u+017a}" ; (ź) z with acute
143 cmpApostrophe.item["Z"] := "{u+0179}" ; (Ź) Z with acute
144
145
146 ; Compose : Grave Accent (`)
147
148 cmpGrave.item["a"] := "{u+00e0}" ; (à) a with grave
149 cmpGrave.item["A"] := "{u+00c0}" ; (À) A with grave
150 cmpGrave.item["e"] := "{u+00e8}" ; (è) e with grave
151 cmpGrave.item["E"] := "{u+00c8}" ; (È) E with grave
152 cmpGrave.item["i"] := "{u+00ec}" ; (ì) i with grave
153 cmpGrave.item["I"] := "{u+00cc}" ; (Ì) I with grave
154 cmpGrave.item["n"] := "{u+01f9}" ; (ǹ) n with grave
155 cmpGrave.item["N"] := "{u+01f8}" ; (Ǹ) N with grave
156 cmpGrave.item["o"] := "{u+00f2}" ; (ò) o with grave
157 cmpGrave.item["O"] := "{u+00d2}" ; (Ò) O with grave
158 cmpGrave.item["u"] := "{u+00f9}" ; (ù) u with grave
159 cmpGrave.item["U"] := "{u+00d9}" ; (Ù) U with grave
160 cmpGrave.item["w"] := "{u+1e81}" ; (ẁ) w with grave
161 cmpGrave.item["W"] := "{u+1e80}" ; (Ẁ) W with grave
162 cmpGrave.item["y"] := "{u+1ef3}" ; (ỳ) y with grave
163 cmpGrave.item["Y"] := "{u+1ef2}" ; (Ỳ) Y with grave
164
165
166 ; Compose : Diaeresis (")
167
168 cmpQuote.item["a"] := "{u+00e4}" ; (ä) a with diaeresis
169 cmpQuote.item["A"] := "{u+00c4}" ; (Ä) A with diaeresis
170 cmpQuote.item["e"] := "{u+00eb}" ; (ë) e with diaeresis
171 cmpQuote.item["E"] := "{u+00cb}" ; (Ë) E with diaeresis
172 cmpQuote.item["h"] := "{u+1e27}" ; (ḧ) h with diaeresis
173 cmpQuote.item["H"] := "{u+1e26}" ; (Ḧ) H with diaeresis
174 cmpQuote.item["i"] := "{u+00ef}" ; (ï) i with diaeresis
175 cmpQuote.item["I"] := "{u+00cf}" ; (Ï) I with diaeresis
176 cmpQuote.item["o"] := "{u+00f6}" ; (ö) o with diaeresis
177 cmpQuote.item["O"] := "{u+00d6}" ; (Ö) O with diaeresis
178 cmpQuote.item["t"] := "{u+1e97}" ; (ẗ) t with diaeresis
179 cmpQuote.item["u"] := "{u+00fc}" ; (ü) u with diaeresis
180 cmpQuote.item["U"] := "{u+00dc}" ; (Ü) U with diaeresis
181 cmpQuote.item["w"] := "{u+1e85}" ; (ẅ) w with diaeresis
182 cmpQuote.item["W"] := "{u+1e84}" ; (Ẅ) W with diaeresis
183 cmpQuote.item["x"] := "{u+1e8d}" ; (ẍ) x with diaeresis
184 cmpQuote.item["X"] := "{u+1e8c}" ; (Ẍ) X with diaeresis
185 cmpQuote.item["y"] := "{u+00ff}" ; (ÿ) y with diaeresis
186 cmpQuote.item["Y"] := "{u+0178}" ; (Ÿ) Y with diaeresis
187
188
189 ; Compose : Circumflex Accent (c)
190
191 cmpSmallC.item["a"] := "{u+00e2}" ; (â) a with circumflex
192 cmpSmallC.item["A"] := "{u+00c2}" ; (Â) A with circumflex
193 cmpSmallC.item["c"] := "{u+0109}" ; (ĉ) c with circumflex
194 cmpSmallC.item["C"] := "{u+0108}" ; (Ĉ) C with circumflex
195 cmpSmallC.item["e"] := "{u+00ea}" ; (ê) e with circumflex
196 cmpSmallC.item["E"] := "{u+00ca}" ; (Ê) E with circumflex
197 cmpSmallC.item["g"] := "{u+011d}" ; (ĝ) g with circumflex
198 cmpSmallC.item["G"] := "{u+011c}" ; (Ĝ) G with circumflex
199 cmpSmallC.item["h"] := "{u+0125}" ; (ĥ) h with circumflex
200 cmpSmallC.item["H"] := "{u+0124}" ; (Ĥ) H with circumflex
201 cmpSmallC.item["i"] := "{u+00ee}" ; (î) i with circumflex
202 cmpSmallC.item["I"] := "{u+00ce}" ; (Î) I with circumflex
203 cmpSmallC.item["j"] := "{u+0135}" ; (ĵ) j with circumflex
204 cmpSmallC.item["J"] := "{u+0134}" ; (Ĵ) J with circumflex
205 cmpSmallC.item["o"] := "{u+00f4}" ; (ô) o with circumflex
206 cmpSmallC.item["O"] := "{u+00d4}" ; (Ô) O with circumflex
207 cmpSmallC.item["s"] := "{u+015d}" ; (ŝ) s with circumflex
208 cmpSmallC.item["S"] := "{u+015c}" ; (Ŝ) S with circumflex
209 cmpSmallC.item["u"] := "{u+00fb}" ; (û) u with circumflex
210 cmpSmallC.item["U"] := "{u+00db}" ; (Û) U with circumflex
211 cmpSmallC.item["w"] := "{u+0175}" ; (ŵ) w with circumflex
212 cmpSmallC.item["W"] := "{u+0174}" ; (Ŵ) W with circumflex
213 cmpSmallC.item["y"] := "{u+0177}" ; (ŷ) y with circumflex
214 cmpSmallC.item["Y"] := "{u+0176}" ; (Ŷ) Y with circumflex
215 cmpSmallC.item["z"] := "{u+1e91}" ; (ẑ) z with circumflex
216 cmpSmallC.item["Z"] := "{u+1e90}" ; (Ẑ) Z with circumflex
217
218
219 ; Compose : Tilde (~)
220
221 cmpTilde.item["a"] := "{u+00e3}" ; (ã) a with tilde
222 cmpTilde.item["A"] := "{u+00c3}" ; (Ã) A with tilde
223 cmpTilde.item["e"] := "{u+1ebd}" ; (ẽ) e with tilde
224 cmpTilde.item["E"] := "{u+1ebc}" ; (Ẽ) E with tilde
225 cmpTilde.item["i"] := "{u+0129}" ; (ĩ) i with tilde
226 cmpTilde.item["I"] := "{u+0128}" ; (Ĩ) I with tilde
227 cmpTilde.item["l"] := "{u+026b}" ; (ɫ) l with middle tilde
228 cmpTilde.item["L"] := "{u+2c62}" ; (Ɫ) L with middle tilde
229 cmpTilde.item["n"] := "{u+00f1}" ; (ñ) n with tilde
230 cmpTilde.item["N"] := "{u+00d1}" ; (Ñ) N with tilde
231 cmpTilde.item["o"] := "{u+00f5}" ; (õ) o with tilde
232 cmpTilde.item["O"] := "{u+00d5}" ; (Õ) O with tilde
233 cmpTilde.item["u"] := "{u+0169}" ; (ũ) u with tilde
234 cmpTilde.item["U"] := "{u+0168}" ; (Ũ) U with tilde
235 cmpTilde.item["v"] := "{u+1e7d}" ; (ṽ) v with tilde
236 cmpTilde.item["V"] := "{u+1e7c}" ; (Ṽ) V with tilde
237 cmpTilde.item["y"] := "{u+1ef9}" ; (ỹ) y with tilde
238 cmpTilde.item["Y"] := "{u+1ef8}" ; (Ỹ) Y with tilde
239
240
241 ; Compose : Cedilla and Ogonek (,)
242
243 cmpComma.item["a"] := "{u+0105}" ; (ą) a with ogonek
244 cmpComma.item["A"] := "{u+0104}" ; (Ą) A with ogonek
245 cmpComma.item["c"] := "{u+00e7}" ; (ç) c with cedilla
246 cmpComma.item["C"] := "{u+00c7}" ; (Ç) C with cedilla
247 cmpComma.item["d"] := "{u+1e11}" ; (ḑ) d with cedilla
248 cmpComma.item["D"] := "{u+1e10}" ; (Ḑ) D with cedilla
249 cmpComma.item["e"] := "{u+0119}" ; (ę) e with ogonek
250 cmpComma.item["E"] := "{u+0118}" ; (Ę) E with ogonek
251 cmpComma.item["f"] := "{u+0229}" ; (ȩ) e with cedilla
252 cmpComma.item["F"] := "{u+0228}" ; (Ȩ) E with cedilla
253 cmpComma.item["g"] := "{u+0123}" ; (ģ) g with cedilla
254 cmpComma.item["G"] := "{u+0122}" ; (Ģ) G with cedilla
255 cmpComma.item["h"] := "{u+1e29}" ; (ḩ) h with cedilla
256 cmpComma.item["H"] := "{u+1e28}" ; (Ḩ) H with cedilla
257 cmpComma.item["i"] := "{u+012f}" ; (į) i with ogonek
258 cmpComma.item["I"] := "{u+012e}" ; (Į) I with ogonek
259 cmpComma.item["k"] := "{u+0137}" ; (ķ) k with cedilla
260 cmpComma.item["K"] := "{u+0136}" ; (Ķ) K with cedilla
261 cmpComma.item["l"] := "{u+013c}" ; (ļ) l with cedilla
262 cmpComma.item["L"] := "{u+013b}" ; (Ļ) L with cedilla
263 cmpComma.item["n"] := "{u+0146}" ; (ņ) n with cedilla
264 cmpComma.item["N"] := "{u+0145}" ; (Ņ) N with cedilla
265 cmpComma.item["o"] := "{u+01eb}" ; (ǫ) o with ogonek
266 cmpComma.item["O"] := "{u+01ea}" ; (Ǫ) O with ogonek
267 cmpComma.item["r"] := "{u+0157}" ; (ŗ) r with cedilla
268 cmpComma.item["R"] := "{u+0156}" ; (Ŗ) R with cedilla
269 cmpComma.item["s"] := "{u+015f}" ; (ş) s with cedilla
270 cmpComma.item["S"] := "{u+015e}" ; (Ş) S with cedilla
271 cmpComma.item["t"] := "{u+0163}" ; (ţ) t with cedilla
272 cmpComma.item["T"] := "{u+0162}" ; (Ţ) T with cedilla
273 cmpComma.item["u"] := "{u+0173}" ; (ų) u with ogonek
274 cmpComma.item["U"] := "{u+0172}" ; (Ų) U with ogonek
275
276
277 ; Compose : Caron (v)
278
279 cmpSmallV.item["a"] := "{u+01ce}" ; (ǎ) a with caron
280 cmpSmallV.item["A"] := "{u+01cd}" ; (Ǎ) A with caron
281 cmpSmallV.item["c"] := "{u+010d}" ; (č) c with caron
282 cmpSmallV.item["C"] := "{u+010c}" ; (Č) C with caron
283 cmpSmallV.item["d"] := "{u+010f}" ; (ď) d with caron
284 cmpSmallV.item["D"] := "{u+010e}" ; (Ď) D with caron
285 cmpSmallV.item["e"] := "{u+011b}" ; (ě) e with caron
286 cmpSmallV.item["E"] := "{u+011a}" ; (Ě) E with caron
287 cmpSmallV.item["g"] := "{u+01e7}" ; (ǧ) g with caron
288 cmpSmallV.item["G"] := "{u+01e6}" ; (Ǧ) G with caron
289 cmpSmallV.item["h"] := "{u+021f}" ; (ȟ) h with caron
290 cmpSmallV.item["H"] := "{u+021e}" ; (Ȟ) H with caron
291 cmpSmallV.item["i"] := "{u+01d0}" ; (ǐ) i with caron
292 cmpSmallV.item["I"] := "{u+01cf}" ; (Ǐ) I with caron
293 cmpSmallV.item["j"] := "{u+01f0}" ; (ǰ) j with caron
294 cmpSmallV.item["k"] := "{u+01e9}" ; (ǩ) k with caron
295 cmpSmallV.item["K"] := "{u+01e8}" ; (Ǩ) K with caron
296 cmpSmallV.item["l"] := "{u+013e}" ; (ľ) l with caron
297 cmpSmallV.item["L"] := "{u+013d}" ; (Ľ) L with caron
298 cmpSmallV.item["n"] := "{u+0148}" ; (ň) n with caron
299 cmpSmallV.item["N"] := "{u+0147}" ; (Ň) N with caron
300 cmpSmallV.item["o"] := "{u+01d2}" ; (ǒ) o with caron
301 cmpSmallV.item["O"] := "{u+01d1}" ; (Ǒ) O with caron
302 cmpSmallV.item["r"] := "{u+0159}" ; (ř) r with caron
303 cmpSmallV.item["R"] := "{u+0158}" ; (Ř) R with caron
304 cmpSmallV.item["s"] := "{u+0161}" ; (š) s with caron
305 cmpSmallV.item["S"] := "{u+0160}" ; (Š) S with caron
306 cmpSmallV.item["t"] := "{u+0165}" ; (ť) t with caron
307 cmpSmallV.item["T"] := "{u+0164}" ; (Ť) T with caron
308 cmpSmallV.item["u"] := "{u+01d4}" ; (ǔ) u with caron
309 cmpSmallV.item["U"] := "{u+01d3}" ; (Ǔ) U with caron
310 cmpSmallV.item["z"] := "{u+017e}" ; (ž) z with caron
311 cmpSmallV.item["Z"] := "{u+017d}" ; (Ž) Z with caron
312 cmpSmallV.item["3"] := "{u+01ef}" ; (ǯ) small letter ezh with caron
313 cmpSmallV.item["#"] := "{u+01ee}" ; (Ǯ) capital letter ezh with caron
314
315
316 ; Compose : Dot Above (.)
317
318 cmpPeriod.item["a"] := "{u+0227}" ; (ȧ) a with dot above
319 cmpPeriod.item["A"] := "{u+0226}" ; (Ȧ) A with dot above
320 cmpPeriod.item["b"] := "{u+1e03}" ; (ḃ) b with dot above
321 cmpPeriod.item["B"] := "{u+1e02}" ; (Ḃ) B with dot above
322 cmpPeriod.item["c"] := "{u+010b}" ; (ċ) c with dot above
323 cmpPeriod.item["C"] := "{u+010a}" ; (Ċ) C with dot above
324 cmpPeriod.item["d"] := "{u+1e0b}" ; (ḋ) d with dot above
325 cmpPeriod.item["D"] := "{u+1e0a}" ; (Ḋ) D with dot above
326 cmpPeriod.item["e"] := "{u+0117}" ; (ė) e with dot above
327 cmpPeriod.item["E"] := "{u+0116}" ; (Ė) E with dot above
328 cmpPeriod.item["f"] := "{u+1e1f}" ; (ḟ) f with dot above
329 cmpPeriod.item["F"] := "{u+1e1e}" ; (Ḟ) F with dot above
330 cmpPeriod.item["g"] := "{u+0121}" ; (ġ) g with dot above
331 cmpPeriod.item["G"] := "{u+0120}" ; (Ġ) G with dot above
332 cmpPeriod.item["h"] := "{u+1e23}" ; (ḣ) h with dot above
333 cmpPeriod.item["H"] := "{u+1e22}" ; (Ḣ) H with dot above
334 cmpPeriod.item["i"] := "{u+0131}" ; (ı) dotless i (Turkish, Azerbaijani)
335 cmpPeriod.item["I"] := "{u+0130}" ; (İ) I with dot above (Turkish, Azerbaijani)
336 cmpPeriod.item["j"] := "{u+0237}" ; (ȷ) dotless j
337 cmpPeriod.item["l"] := "{u+0140}" ; (ŀ) l with middle dot
338 cmpPeriod.item["L"] := "{u+013f}" ; (Ŀ) L with middle dot
339 cmpPeriod.item["m"] := "{u+1e41}" ; (ṁ) m with dot above
340 cmpPeriod.item["M"] := "{u+1e40}" ; (Ṁ) M with dot above
341 cmpPeriod.item["n"] := "{u+1e45}" ; (ṅ) n with dot above
342 cmpPeriod.item["N"] := "{u+1e44}" ; (Ṅ) N with dot above
343 cmpPeriod.item["o"] := "{u+022f}" ; (ȯ) o with dot above
344 cmpPeriod.item["O"] := "{u+022e}" ; (Ȯ) O with dot above
345 cmpPeriod.item["p"] := "{u+1e57}" ; (ṗ) p with dot above
346 cmpPeriod.item["P"] := "{u+1e56}" ; (Ṗ) P with dot above
347 cmpPeriod.item["q"] := "{u+1e9b}" ; (ẛ) long s with dot above
348 cmpPeriod.item["r"] := "{u+1e59}" ; (ṙ) r with dot above
349 cmpPeriod.item["R"] := "{u+1e58}" ; (Ṙ) R with dot above
350 cmpPeriod.item["s"] := "{u+1e61}" ; (ṡ) s with dot above
351 cmpPeriod.item["S"] := "{u+1e60}" ; (Ṡ) S with dot above
352 cmpPeriod.item["t"] := "{u+1e6b}" ; (ṫ) t with dot above
353 cmpPeriod.item["T"] := "{u+1e6a}" ; (Ṫ) T with dot above
354 cmpPeriod.item["u"] := "{u+016f}" ; (ů) u with ring above
355 cmpPeriod.item["U"] := "{u+016e}" ; (Ů) U with ring above
356 cmpPeriod.item["w"] := "{u+1e87}" ; (ẇ) w with dot above
357 cmpPeriod.item["W"] := "{u+1e86}" ; (Ẇ) W with dot above
358 cmpPeriod.item["x"] := "{u+1e8b}" ; (ẋ) x with dot above
359 cmpPeriod.item["X"] := "{u+1e8a}" ; (Ẋ) X with dot above
360 cmpPeriod.item["y"] := "{u+1e8f}" ; (ẏ) y with dot above
361 cmpPeriod.item["Y"] := "{u+1e8e}" ; (Ẏ) Y with dot above
362 cmpPeriod.item["z"] := "{u+017c}" ; (ż) z with dot above
363 cmpPeriod.item["Z"] := "{u+017b}" ; (Ż) Z with dot above
364
365
366 ; Compose : Ring Above (o)
367
368 cmpSmallO.item["a"] := "{u+00e5}" ; (å) a with ring above
369 cmpSmallO.item["A"] := "{u+00c5}" ; (Å) A with ring above
370 cmpSmallO.item["u"] := "{u+016f}" ; (ů) u with ring above
371 cmpSmallO.item["U"] := "{u+016e}" ; (Ů) U with ring above
372 cmpSmallO.item["w"] := "{u+1e98}" ; (ẘ) w with ring above
373 cmpSmallO.item["y"] := "{u+1e99}" ; (ẙ) y with ring above
374
375
376 ; Compose : Macron and Stroke (-)
377
378 cmpMinus.item["a"] := "{u+0101}" ; (ā) a with macron
379 cmpMinus.item["A"] := "{u+0100}" ; (Ā) A with macron
380 cmpMinus.item["b"] := "{u+0180}" ; (ƀ) b with stroke
381 cmpMinus.item["B"] := "{u+0243}" ; (Ƀ) B with stroke
382 cmpMinus.item["d"] := "{u+0111}" ; (đ) d with stroke
383 cmpMinus.item["D"] := "{u+0110}" ; (Đ) D with stroke
384 cmpMinus.item["e"] := "{u+0113}" ; (ē) e with macron
385 cmpMinus.item["E"] := "{u+0112}" ; (Ē) E with macron
386 cmpMinus.item["g"] := "{u+01e5}" ; (ǥ) g with stroke (Skolt Sami)
387 cmpMinus.item["G"] := "{u+01e4}" ; (Ǥ) G with stroke (Skolt Sami)
388 cmpMinus.item["h"] := "{u+0127}" ; (ħ) h with stroke (Maltese)
389 cmpMinus.item["H"] := "{u+0126}" ; (Ħ) H with stroke (Maltese)
390 cmpMinus.item["i"] := "{u+012b}" ; (ī) i with macron
391 cmpMinus.item["I"] := "{u+012a}" ; (Ī) I with macron
392 cmpMinus.item["j"] := "{u+0249}" ; (ɉ) j with stroke
393 cmpMinus.item["J"] := "{u+0248}" ; (Ɉ) J with stroke
394 cmpMinus.item["l"] := "{u+0142}" ; (ł) l with stroke
395 cmpMinus.item["L"] := "{u+0141}" ; (Ł) L with stroke
396 cmpMinus.item["o"] := "{u+014d}" ; (ō) o with macron
397 cmpMinus.item["O"] := "{u+014c}" ; (Ō) O with macron
398 cmpMinus.item["p"] := "{u+1d7d}" ; (ᵽ) p with stroke
399 cmpMinus.item["P"] := "{u+2c63}" ; (Ᵽ) P with stroke
400 cmpMinus.item["q"] := "{u+01ed}" ; (ǭ) o with ogonek and macron
401 cmpMinus.item["Q"] := "{u+01ec}" ; (Ǭ) O with ogonek and macron
402 cmpMinus.item["r"] := "{u+024d}" ; (ɍ) r with stroke
403 cmpMinus.item["R"] := "{u+024c}" ; (Ɍ) R with stroke
404 cmpMinus.item["t"] := "{u+0167}" ; (ŧ) t with stroke
405 cmpMinus.item["T"] := "{u+0166}" ; (Ŧ) T with stroke
406 cmpMinus.item["u"] := "{u+016b}" ; (ū) u with macron
407 cmpMinus.item["U"] := "{u+016a}" ; (Ū) U with macron
408 cmpMinus.item["y"] := "{u+0233}" ; (ȳ) y with macron
409 cmpMinus.item["Y"] := "{u+0232}" ; (Ȳ) Y with macron
410 cmpMinus.item["z"] := "{u+01b6}" ; (ƶ) z with stroke
411 cmpMinus.item["Z"] := "{u+01b5}" ; (Ƶ) Z with stroke
412
413
414 ; Compose : Macron and Stroke (additional) (_)
415
416 cmpUnderscore.item["f"] := "{u+1e9d}" ; (ẝ) long s with high stroke
417 cmpUnderscore.item["g"] := "{u+1e21}" ; (ḡ) g with macron
418 cmpUnderscore.item["G"] := "{u+1e20}" ; (Ḡ) G with macron
419 cmpUnderscore.item["i"] := "{u+0268}" ; (ɨ) i with stroke
420 cmpUnderscore.item["I"] := "{u+0197}" ; (Ɨ) I with stroke
421 cmpUnderscore.item["l"] := "{u+019a}" ; (ƚ) l with bar
422 cmpUnderscore.item["L"] := "{u+023d}" ; (Ƚ) L with bar
423 cmpUnderscore.item["o"] := "{u+0275}" ; (ɵ) barred o
424 cmpUnderscore.item["O"] := "{u+019f}" ; (Ɵ) O with middle tilde
425 cmpUnderscore.item["q"] := "{u+01e3}" ; (ǣ) ae with macron
426 cmpUnderscore.item["Q"] := "{u+01e2}" ; (Ǣ) AE with macron
427 cmpUnderscore.item["u"] := "{u+0289}" ; (ʉ) u with bar
428 cmpUnderscore.item["U"] := "{u+0244}" ; (Ʉ) U with bar
429 cmpUnderscore.item["y"] := "{u+024f}" ; (ɏ) y with stroke
430 cmpUnderscore.item["Y"] := "{u+024e}" ; (Ɏ) Y with stroke
431
432
433 ; Compose : Oblique/Diagonal Stroke (/)
434
435 cmpSlash.item["a"] := "{u+2c65}" ; (ⱥ) a with stroke
436 cmpSlash.item["A"] := "{u+023a}" ; (Ⱥ) A with stroke
437 cmpSlash.item["c"] := "{u+023c}" ; (ȼ) c with stroke
438 cmpSlash.item["C"] := "{u+023b}" ; (Ȼ) C with stroke
439 cmpSlash.item["e"] := "{u+0247}" ; (ɇ) e with stroke
440 cmpSlash.item["E"] := "{u+0246}" ; (Ɇ) E with stroke
441 cmpSlash.item["f"] := "{u+1e9c}" ; (ẜ) long s with diagonal stroke
442 cmpSlash.item["g"] := "{u+a7a1}" ; (ꞡ) g with oblique stroke
443 cmpSlash.item["G"] := "{u+a7a0}" ; (Ꞡ) G with oblique stroke
444 cmpSlash.item["k"] := "{u+a7a3}" ; (ꞣ) k with oblique stroke
445 cmpSlash.item["K"] := "{u+a7a2}" ; (Ꞣ) K with oblique stroke
446 cmpSlash.item["l"] := "{u+0142}" ; (ł) l with stroke
447 cmpSlash.item["L"] := "{u+0141}" ; (Ł) L with stroke
448 cmpSlash.item["n"] := "{u+a7a5}" ; (ꞥ) n with oblique stroke
449 cmpSlash.item["N"] := "{u+a7a4}" ; (Ꞥ) N with oblique stroke
450 cmpSlash.item["o"] := "{u+00f8}" ; (ø) o with stroke
451 cmpSlash.item["O"] := "{u+00d8}" ; (Ø) O with stroke
452 cmpSlash.item["r"] := "{u+a7a7}" ; (ꞧ) r with oblique stroke
453 cmpSlash.item["R"] := "{u+a7a6}" ; (Ꞧ) R with oblique stroke
454 cmpSlash.item["s"] := "{u+a7a9}" ; (ꞩ) s with oblique stroke
455 cmpSlash.item["S"] := "{u+a7a8}" ; (Ꞩ) S with oblique stroke
456 cmpSlash.item["t"] := "{u+2c66}" ; (ⱦ) t with stroke
457 cmpSlash.item["T"] := "{u+023e}" ; (Ⱦ) T with stroke
458
459
460 ; Compose : Breve and Special Letters (b)
461
462 cmpSmallB.item["a"] := "{u+0103}" ; (ă) a with breve
463 cmpSmallB.item["A"] := "{u+0102}" ; (Ă) A with breve
464 cmpSmallB.item["d"] := "{u+0256}" ; (ɖ) small letter d with tail
465 cmpSmallB.item["D"] := "{u+0189}" ; (Ɖ) capital letter African D
466 cmpSmallB.item["e"] := "{u+0115}" ; (ĕ) e with breve
467 cmpSmallB.item["E"] := "{u+0114}" ; (Ĕ) E with breve
468 cmpSmallB.item["f"] := "{u+0259}" ; (ə) small letter schwa (Azerbaijani)
469 cmpSmallB.item["F"] := "{u+018f}" ; (Ə) capital letter schwa (Azerbaijani)
470 cmpSmallB.item["g"] := "{u+011f}" ; (ğ) g with breve
471 cmpSmallB.item["G"] := "{u+011e}" ; (Ğ) G with breve
472 cmpSmallB.item["i"] := "{u+012d}" ; (ĭ) i with breve
473 cmpSmallB.item["I"] := "{u+012c}" ; (Ĭ) I with breve
474 cmpSmallB.item["o"] := "{u+014f}" ; (ŏ) o with breve
475 cmpSmallB.item["O"] := "{u+014e}" ; (Ŏ) O with breve
476 cmpSmallB.item["s"] := "{u+0219}" ; (ș) s with comma below (Romanian)
477 cmpSmallB.item["S"] := "{u+0218}" ; (Ș) S with comma below (Romanian)
478 cmpSmallB.item["t"] := "{u+021b}" ; (ț) t with comma below (Romanian)
479 cmpSmallB.item["T"] := "{u+021a}" ; (Ț) T with comma below (Romanian)
480 cmpSmallB.item["u"] := "{u+016d}" ; (ŭ) u with breve
481 cmpSmallB.item["U"] := "{u+016c}" ; (Ŭ) U with breve
482 cmpSmallB.item["w"] := "{u+01bf}" ; (ƿ) small letter wynn
483 cmpSmallB.item["W"] := "{u+01f7}" ; (Ƿ) capital letter wynn
484 cmpSmallB.item["y"] := "{u+021d}" ; (ȝ) small letter yogh
485 cmpSmallB.item["Y"] := "{u+021c}" ; (Ȝ) capital letter yogh
486 cmpSmallB.item["3"] := "{u+0292}" ; (ʒ) small letter ezh
487 cmpSmallB.item["#"] := "{u+01b7}" ; (Ʒ) capital letter ezh
488
489
490 ; Compose : Double Acute Accent (=)
491
492 cmpEquals.item["o"] := "{u+0151}" ; (ő) o with double acute
493 cmpEquals.item["O"] := "{u+0150}" ; (Ő) O with double acute
494 cmpEquals.item["u"] := "{u+0171}" ; (ű) u with double acute
495 cmpEquals.item["U"] := "{u+0170}" ; (Ű) U with double acute
496
497
498 ; Compose : Hook, Horn and Variations (h)
499
500 cmpSmallH.item["b"] := "{u+0253}" ; (ɓ) b with hook
501 cmpSmallH.item["B"] := "{u+0181}" ; (Ɓ) B with hook
502 cmpSmallH.item["c"] := "{u+0188}" ; (ƈ) c with hook
503 cmpSmallH.item["C"] := "{u+0187}" ; (Ƈ) C with hook
504 cmpSmallH.item["d"] := "{u+0257}" ; (ɗ) d with hook
505 cmpSmallH.item["D"] := "{u+018a}" ; (Ɗ) D with hook
506 cmpSmallH.item["e"] := "{u+025a}" ; (ɚ) small letter schwa with hook
507 cmpSmallH.item["f"] := "{u+0192}" ; (ƒ) f with hook
508 cmpSmallH.item["F"] := "{u+0191}" ; (Ƒ) F with hook
509 cmpSmallH.item["g"] := "{u+0260}" ; (ɠ) g with hook
510 cmpSmallH.item["G"] := "{u+0193}" ; (Ɠ) G with hook
511 cmpSmallH.item["h"] := "{u+0266}" ; (ɦ) h with hook
512 cmpSmallH.item["H"] := "{u+a7aa}" ; (Ɦ) H with hook
513 cmpSmallH.item["j"] := "{u+0267}" ; (ɧ) small letter heng with hook
514 cmpSmallH.item["k"] := "{u+0199}" ; (ƙ) k with hook
515 cmpSmallH.item["K"] := "{u+0198}" ; (Ƙ) K with hook
516 cmpSmallH.item["l"] := "{u+026c}" ; (ɬ) l with belt
517 cmpSmallH.item["L"] := "{u+a7ad}" ; (Ɬ) L with belt
518 cmpSmallH.item["m"] := "{u+0271}" ; (ɱ) m with hook
519 cmpSmallH.item["M"] := "{u+2c6e}" ; (Ɱ) M with hook
520 cmpSmallH.item["n"] := "{u+0272}" ; (ɲ) n with left hook
521 cmpSmallH.item["N"] := "{u+019d}" ; (Ɲ) N with left hook
522 cmpSmallH.item["o"] := "{u+01a1}" ; (ơ) o with horn
523 cmpSmallH.item["O"] := "{u+01a0}" ; (Ơ) O with horn
524 cmpSmallH.item["p"] := "{u+01a5}" ; (ƥ) p with hook
525 cmpSmallH.item["P"] := "{u+01a4}" ; (Ƥ) P with hook
526 cmpSmallH.item["q"] := "{u+024b}" ; (ɋ) q with hook tail
527 cmpSmallH.item["Q"] := "{u+024a}" ; (Ɋ) Q with hook tail
528 cmpSmallH.item["r"] := "{u+027d}" ; (ɽ) r with tail
529 cmpSmallH.item["R"] := "{u+2c64}" ; (Ɽ) R with tail
530 cmpSmallH.item["s"] := "{u+0282}" ; (ʂ) s with hook
531 cmpSmallH.item["t"] := "{u+01ad}" ; (ƭ) t with hook
532 cmpSmallH.item["T"] := "{u+01ac}" ; (Ƭ) T with hook
533 cmpSmallH.item["u"] := "{u+01b0}" ; (ư) u with horn
534 cmpSmallH.item["U"] := "{u+01af}" ; (Ư) U with horn
535 cmpSmallH.item["v"] := "{u+028b}" ; (ʋ) v with hook
536 cmpSmallH.item["V"] := "{u+01b2}" ; (Ʋ) V with hook
537 cmpSmallH.item["w"] := "{u+2c73}" ; (ⱳ) w with hook
538 cmpSmallH.item["W"] := "{u+2c72}" ; (Ⱳ) W with hook
539 cmpSmallH.item["y"] := "{u+01b4}" ; (ƴ) y with hook
540 cmpSmallH.item["Y"] := "{u+01b3}" ; (Ƴ) Y with hook
541 cmpSmallH.item["z"] := "{u+0225}" ; (ȥ) z with hook
542 cmpSmallH.item["Z"] := "{u+0224}" ; (Ȥ) Z with hook
543
544
545 ; Compose : Retroflex Hook and Variations (f)
546
547 cmpSmallF.item["d"] := "{u+1d91}" ; (ᶑ) d with hook and tail
548 cmpSmallF.item["e"] := "{u+025d}" ; (ɝ) small letter reversed open e with hook
549 cmpSmallF.item["f"] := "{u+1d94}" ; (ᶔ) small letter reversed open e with retroflex hook
550 cmpSmallF.item["g"] := "{u+ab36}" ; (ꬶ) small letter script g with crossed-tail
551 cmpSmallF.item["h"] := "{u+a727}" ; (ꜧ) small letter heng
552 cmpSmallF.item["H"] := "{u+a726}" ; (Ꜧ) capital letter heng
553 cmpSmallF.item["j"] := "{u+029d}" ; (ʝ) j with crossed-tail
554 cmpSmallF.item["J"] := "{u+a7b2}" ; (Ʝ) J with crossed-tail
555 cmpSmallF.item["l"] := "{u+026d}" ; (ɭ) l with retroflex hook
556 cmpSmallF.item["n"] := "{u+0273}" ; (ɳ) n with retroflex hook
557 cmpSmallF.item["q"] := "{u+02a0}" ; (ʠ) q with hook
558 cmpSmallF.item["r"] := "{u+027e}" ; (ɾ) r with fishhook
559 cmpSmallF.item["t"] := "{u+0288}" ; (ʈ) t with retroflex hook
560 cmpSmallF.item["T"] := "{u+01ae}" ; (Ʈ) T with retroflex hook
561 cmpSmallF.item["v"] := "{u+2c71}" ; (ⱱ) v with right hook
562 cmpSmallF.item["z"] := "{u+0290}" ; (ʐ) z with retroflex hook
563
564
565 ; Compose : Swash Tail and Other Variations (t)
566
567 cmpSmallT.item["c"] := "{u+a793}" ; (ꞓ) c with bar
568 cmpSmallT.item["C"] := "{u+a792}" ; (Ꞓ) C with bar
569 cmpSmallT.item["f"] := "{u+a799}" ; (ꞙ) f with stroke
570 cmpSmallT.item["F"] := "{u+a798}" ; (Ꞙ) F with stroke
571 cmpSmallT.item["l"] := "{u+2c61}" ; (ⱡ) l with double bar
572 cmpSmallT.item["L"] := "{u+2c60}" ; (Ⱡ) L with double bar
573 cmpSmallT.item["s"] := "{u+023f}" ; (ȿ) s with swash tail
574 cmpSmallT.item["S"] := "{u+2c7e}" ; (Ȿ) S with swash tail
575 cmpSmallT.item["z"] := "{u+0240}" ; (ɀ) z with swash tail
576 cmpSmallT.item["Z"] := "{u+2c7f}" ; (Ɀ) Z with swash tail
577
578
579 ; Compose : Latin Greek Letters and Variations (l)
580
581 cmpSmallL.item["a"] := "{u+0251}" ; (ɑ) Latin small letter alpha
582 cmpSmallL.item["A"] := "{u+2c6d}" ; (Ɑ) Latin capital letter alpha
583 cmpSmallL.item["b"] := "{u+025e}" ; (ɞ) small letter closed reversed open e
584 cmpSmallL.item["d"] := "{u+1e9f}" ; (ẟ) Latin small letter delta
585 cmpSmallL.item["e"] := "{u+025b}" ; (ɛ) small letter open e (Latin small epsilon)
586 cmpSmallL.item["E"] := "{u+0190}" ; (Ɛ) capital letter open E (Latin capital epsilon)
587 cmpSmallL.item["f"] := "{u+0278}" ; (ɸ) Latin small letter phi
588 cmpSmallL.item["g"] := "{u+0261}" ; (ɡ) small letter script g
589 cmpSmallL.item["G"] := "{u+a7ac}" ; (Ɡ) capital letter script G
590 cmpSmallL.item["h"] := "{u+01a3}" ; (ƣ) small letter gha
591 cmpSmallL.item["H"] := "{u+01a2}" ; (Ƣ) capital letter gha
592 cmpSmallL.item["i"] := "{u+0269}" ; (ɩ) Latin small letter iota
593 cmpSmallL.item["I"] := "{u+0196}" ; (Ɩ) Latin capital letter iota
594 cmpSmallL.item["j"] := "{u+0263}" ; (ɣ) Latin small letter gamma
595 cmpSmallL.item["J"] := "{u+0194}" ; (Ɣ) Latin capital letter gamma
596 cmpSmallL.item["k"] := "{u+0138}" ; (ĸ) small letter kra
597 cmpSmallL.item["l"] := "{u+019b}" ; (ƛ) Latin small letter lambda with stroke (barred lambda)
598 cmpSmallL.item["m"] := "{u+0270}" ; (ɰ) small letter turned m with long leg
599 cmpSmallL.item["n"] := "{u+019e}" ; (ƞ) small letter n with long right leg
600 cmpSmallL.item["N"] := "{u+0220}" ; (Ƞ) capital letter N with long right leg
601 cmpSmallL.item["o"] := "{u+0254}" ; (ɔ) small letter open o
602 cmpSmallL.item["O"] := "{u+0186}" ; (Ɔ) capital letter open O
603 cmpSmallL.item["q"] := "{u+0277}" ; (ɷ) Latin small letter closed omega
604 cmpSmallL.item["s"] := "{u+0283}" ; (ʃ) Latin small letter esh
605 cmpSmallL.item["S"] := "{u+01a9}" ; (Ʃ) Latin capital letter esh
606 cmpSmallL.item["u"] := "{u+028a}" ; (ʊ) Latin small letter upsilon
607 cmpSmallL.item["U"] := "{u+01b1}" ; (Ʊ) Latin capital letter upsilon
608 cmpSmallL.item["8"] := "{u+0223}" ; (ȣ) small letter ou
609 cmpSmallL.item["*"] := "{u+0222}" ; (Ȣ) capital letter OU
610 cmpSmallL.item["7"] := "{u+0242}" ; (ɂ) small letter glottal stop
611 cmpSmallL.item["&"] := "{u+0241}" ; (Ɂ) capital letter glottal stop
612 cmpSmallL.item["?"] := "{u+0294}" ; (ʔ) unicase letter glottal stop
613
614
615 ; Compose : Turned and Reversed Letters (r)
616
617 cmpSmallR.item["a"] := "{u+0250}" ; (ɐ) small letter turned a
618 cmpSmallR.item["A"] := "{u+2c6f}" ; (Ɐ) capital letter turned A
619 cmpSmallR.item["b"] := "{u+025c}" ; (ɜ) small letter reversed open e
620 cmpSmallR.item["B"] := "{u+a7ab}" ; (Ɜ) capital letter reversed open E
621 cmpSmallR.item["d"] := "{u+018d}" ; (ƍ) Latin small letter turned delta
622 cmpSmallR.item["e"] := "{u+01dd}" ; (ǝ) small letter turned e
623 cmpSmallR.item["E"] := "{u+018e}" ; (Ǝ) capital letter reversed E
624 cmpSmallR.item["f"] := "{u+0258}" ; (ɘ) small letter reversed e
625 cmpSmallR.item["g"] := "{u+1d77}" ; (ᵷ) small letter turned g
626 cmpSmallR.item["G"] := "{u+2141}" ; (⅁) capital letter turned G
627 cmpSmallR.item["h"] := "{u+0265}" ; (ɥ) small letter turned h
628 cmpSmallR.item["H"] := "{u+a78d}" ; (Ɥ) capital letter turned H
629 cmpSmallR.item["i"] := "{u+1d09}" ; (ᴉ) small letter turned i
630 cmpSmallR.item["k"] := "{u+029e}" ; (ʞ) small letter turned k
631 cmpSmallR.item["K"] := "{u+a7b0}" ; (Ʞ) capital letter turned K
632 cmpSmallR.item["m"] := "{u+026f}" ; (ɯ) small letter turned m
633 cmpSmallR.item["M"] := "{u+019c}" ; (Ɯ) capital letter turned M
634 cmpSmallR.item["o"] := "{u+0264}" ; (ɤ) small letter ram's horn (baby gamma)
635 cmpSmallR.item["q"] := "{u+0252}" ; (ɒ) Latin small letter turned alpha
636 cmpSmallR.item["Q"] := "{u+2c70}" ; (Ɒ) Latin capital letter turned alpha
637 cmpSmallR.item["r"] := "{u+0279}" ; (ɹ) small letter turned r
638 cmpSmallR.item["t"] := "{u+0287}" ; (ʇ) small letter turned t
639 cmpSmallR.item["T"] := "{u+a7b1}" ; (Ʇ) small letter turned T
640 cmpSmallR.item["v"] := "{u+028c}" ; (ʌ) small letter turned v
641 cmpSmallR.item["V"] := "{u+0245}" ; (Ʌ) capital letter turned V
642 cmpSmallR.item["w"] := "{u+028d}" ; (ʍ) small letter turned w
643 cmpSmallR.item["y"] := "{u+028e}" ; (ʎ) small letter turned y
644 cmpSmallR.item["z"] := "{u+01b9}" ; (ƹ) Latin small letter ezh reversed
645 cmpSmallR.item["Z"] := "{u+01b8}" ; (Ƹ) Latin capital letter ezh reversed
646
647
648 ; Compose : Currency Symbols ($)
649
650 cmpDollar.item["a"] := "{u+058f}" ; (֏) Armenian dram
651 cmpDollar.item["A"] := "{u+20b3}" ; (₳) Argentine austral
652 cmpDollar.item["b"] := "{u+20bf}" ; (₿) bitcoin
653 cmpDollar.item["B"] := "{u+0e3f}" ; (฿) Thai baht
654 cmpDollar.item["c"] := "{u+20a1}" ; (₡) Costa Rican colón
655 cmpDollar.item["C"] := "{u+20b5}" ; (₵) Ghanaian cedi
656 cmpDollar.item["d"] := "{u+20ab}" ; (₫) Vietnamese dong
657 cmpDollar.item["D"] := "{u+20af}" ; (₯) Greek drachma
658 cmpDollar.item["e"] := "{u+20ac}" ; (€) euro sign
659 cmpDollar.item["E"] := "{u+20a0}" ; (₠) euro-currency sign
660 cmpDollar.item["f"] := "{u+20a3}" ; (₣) French franc
661 cmpDollar.item["F"] := "{u+20a3}" ; (₣) French franc
662 cmpDollar.item["g"] := "{u+20b2}" ; (₲) Paraguayan guaraní
663 cmpDollar.item["G"] := "{u+20be}" ; (₾) Georgian lari
664 cmpDollar.item["h"] := "{u+20b4}" ; (₴) Ukrainian hryvnia
665 cmpDollar.item["H"] := "{u+20b4}" ; (₴) Ukrainian hryvnia
666 cmpDollar.item["i"] := "{u+20a4}" ; (₤) lira
667 cmpDollar.item["I"] := "{u+20b6}" ; (₶) livre tournois
668 cmpDollar.item["k"] := "{u+20ad}" ; (₭) Laotian kip
669 cmpDollar.item["K"] := "{u+20ad}" ; (₭) Laotian kip
670 cmpDollar.item["l"] := "{u+20ba}" ; (₺) Turkish lira
671 cmpDollar.item["L"] := "{u+00a3}" ; (£) pound sign
672 cmpDollar.item["m"] := "{u+20bc}" ; (₼) Azerbaijani manat
673 cmpDollar.item["M"] := "{u+20a5}" ; (₥) mill sign
674 cmpDollar.item["n"] := "{u+20a6}" ; (₦) Nigerian naira
675 cmpDollar.item["N"] := "{u+20bb}" ; (₻) Nordic mark
676 cmpDollar.item["o"] := "{u+00a2}" ; (¢) cent sign (dollar)
677 cmpDollar.item["p"] := "{u+20b1}" ; (₱) Philippine peso
678 cmpDollar.item["P"] := "{u+20a7}" ; (₧) Spanish pesetas
679 cmpDollar.item["r"] := "{u+20b9}" ; (₹) Indian rupee
680 cmpDollar.item["R"] := "{u+20bd}" ; (₽) Russian ruble
681 cmpDollar.item["s"] := "{u+20aa}" ; (₪) Israeli new shekel
682 cmpDollar.item["S"] := "{u+20b7}" ; (₷) spesmilo
683 cmpDollar.item["t"] := "{u+20ae}" ; (₮) Mongolian tögrög (tugrik)
684 cmpDollar.item["T"] := "{u+20b8}" ; (₸) Kazakh tenge
685 cmpDollar.item["u"] := "{u+20a8}" ; (₨) rupee sign
686 cmpDollar.item["U"] := "{u+20a2}" ; (₢) Brazilian cruzeiro
687 cmpDollar.item["w"] := "{u+20a9}" ; (₩) South Korean won
688 cmpDollar.item["W"] := "{u+20a9}" ; (₩) South Korean won
689 cmpDollar.item["x"] := "{u+00a4}" ; (¤) currency sign
690 cmpDollar.item["y"] := "{u+00a5}" ; (¥) yen sign
691 cmpDollar.item["Y"] := "{u+00a5}" ; (¥) yen sign
692
693
694 ; Compose : Greek Alphabet (g)
695
696 cmpSmallG.item["a"] := "{u+03b1}" ; (α) small alpha
697 cmpSmallG.item["A"] := "{u+0391}" ; (Α) capital alpha
698 cmpSmallG.item["b"] := "{u+03b2}" ; (β) small beta
699 cmpSmallG.item["B"] := "{u+0392}" ; (Β) capital beta
700 cmpSmallG.item["v"] := "{u+03b2}" ; (β) small beta
701 cmpSmallG.item["V"] := "{u+0392}" ; (Β) capital beta
702 cmpSmallG.item["g"] := "{u+03b3}" ; (γ) small gamma
703 cmpSmallG.item["G"] := "{u+0393}" ; (Γ) capital gamma
704 cmpSmallG.item["d"] := "{u+03b4}" ; (δ) small delta
705 cmpSmallG.item["D"] := "{u+0394}" ; (Δ) capital delta
706 cmpSmallG.item["e"] := "{u+03b5}" ; (ε) small epsilon
707 cmpSmallG.item["E"] := "{u+0395}" ; (Ε) capital epsilon
708 cmpSmallG.item["z"] := "{u+03b6}" ; (ζ) small zeta
709 cmpSmallG.item["Z"] := "{u+0396}" ; (Ζ) capital zeta
710 cmpSmallG.item["h"] := "{u+03b7}" ; (η) small eta
711 cmpSmallG.item["H"] := "{u+0397}" ; (Η) capital eta
712 cmpSmallG.item["j"] := "{u+03b8}" ; (θ) small theta
713 cmpSmallG.item["J"] := "{u+0398}" ; (Θ) capital theta
714 cmpSmallG.item["i"] := "{u+03b9}" ; (ι) small iota
715 cmpSmallG.item["I"] := "{u+0399}" ; (Ι) capital iota
716 cmpSmallG.item["k"] := "{u+03ba}" ; (κ) small kappa
717 cmpSmallG.item["K"] := "{u+039a}" ; (Κ) capital kappa
718 cmpSmallG.item["l"] := "{u+03bb}" ; (λ) small lambda
719 cmpSmallG.item["L"] := "{u+039b}" ; (Λ) capital lambda
720 cmpSmallG.item["m"] := "{u+03bc}" ; (μ) small mu
721 cmpSmallG.item["M"] := "{u+039c}" ; (Μ) capital mu
722 cmpSmallG.item["n"] := "{u+03bd}" ; (ν) small nu
723 cmpSmallG.item["N"] := "{u+039d}" ; (Ν) capital nu
724 cmpSmallG.item["x"] := "{u+03be}" ; (ξ) small xi
725 cmpSmallG.item["X"] := "{u+039e}" ; (Ξ) capital xi
726 cmpSmallG.item["o"] := "{u+03bf}" ; (ο) small omicron
727 cmpSmallG.item["O"] := "{u+039f}" ; (Ο) capital omicron
728 cmpSmallG.item["p"] := "{u+03c0}" ; (π) small pi
729 cmpSmallG.item["P"] := "{u+03a0}" ; (Π) capital pi
730 cmpSmallG.item["r"] := "{u+03c1}" ; (ρ) small rho
731 cmpSmallG.item["R"] := "{u+03a1}" ; (Ρ) capital rho
732 cmpSmallG.item["s"] := "{u+03c3}" ; (σ) small sigma
733 cmpSmallG.item[","] := "{u+03c2}" ; (ς) small final sigma
734 cmpSmallG.item["S"] := "{u+03a3}" ; (Σ) capital sigma
735 cmpSmallG.item["t"] := "{u+03c4}" ; (τ) small tau
736 cmpSmallG.item["T"] := "{u+03a4}" ; (Τ) capital tau
737 cmpSmallG.item["u"] := "{u+03c5}" ; (υ) small upsilon
738 cmpSmallG.item["U"] := "{u+03a5}" ; (Υ) capital upsilon
739 cmpSmallG.item["y"] := "{u+03c5}" ; (υ) small upsilon
740 cmpSmallG.item["Y"] := "{u+03a5}" ; (Υ) capital upsilon
741 cmpSmallG.item["f"] := "{u+03c6}" ; (φ) small phi
742 cmpSmallG.item["F"] := "{u+03a6}" ; (Φ) capital phi
743 cmpSmallG.item["c"] := "{u+03c7}" ; (χ) small chi
744 cmpSmallG.item["C"] := "{u+03a7}" ; (Χ) capital chi
745 cmpSmallG.item["w"] := "{u+03c8}" ; (ψ) small psi
746 cmpSmallG.item["W"] := "{u+03a8}" ; (Ψ) capital psi
747 cmpSmallG.item["q"] := "{u+03c9}" ; (ω) small omega
748 cmpSmallG.item["Q"] := "{u+03a9}" ; (Ω) capital omega
749
750
751 ; Compose : Superscript Characters (p)
752
753 cmpSmallP.item["1"] := "{u+00b9}" ; (¹) superscript 1
754 cmpSmallP.item["2"] := "{u+00b2}" ; (²) superscript 2
755 cmpSmallP.item["3"] := "{u+00b3}" ; (³) superscript 3
756 cmpSmallP.item["4"] := "{u+2074}" ; (⁴) superscript 4
757 cmpSmallP.item["5"] := "{u+2075}" ; (⁵) superscript 5
758 cmpSmallP.item["6"] := "{u+2076}" ; (⁶) superscript 6
759 cmpSmallP.item["7"] := "{u+2077}" ; (⁷) superscript 7
760 cmpSmallP.item["8"] := "{u+2078}" ; (⁸) superscript 8
761 cmpSmallP.item["9"] := "{u+2079}" ; (⁹) superscript 9
762 cmpSmallP.item["0"] := "{u+2070}" ; (⁰) superscript 0
763 cmpSmallP.item["i"] := "{u+2071}" ; (ⁱ) superscript i
764 cmpSmallP.item["n"] := "{u+207f}" ; (ⁿ) superscript n
765 cmpSmallP.item["+"] := "{u+207a}" ; (⁺) superscript +
766 cmpSmallP.item["-"] := "{u+207b}" ; (⁻) superscript -
767 cmpSmallP.item["="] := "{u+207c}" ; (⁼) superscript =
768 cmpSmallP.item["("] := "{u+207d}" ; (⁽) superscript (
769 cmpSmallP.item[")"] := "{u+207e}" ; (⁾) superscript )
770
771
772 ; Compose : Subscript Characters (u)
773
774 cmpSmallU.item["1"] := "{u+2081}" ; (₁) subscript 1
775 cmpSmallU.item["2"] := "{u+2082}" ; (₂) subscript 2
776 cmpSmallU.item["3"] := "{u+2083}" ; (₃) subscript 3
777 cmpSmallU.item["4"] := "{u+2084}" ; (₄) subscript 4
778 cmpSmallU.item["5"] := "{u+2085}" ; (₅) subscript 5
779 cmpSmallU.item["6"] := "{u+2086}" ; (₆) subscript 6
780 cmpSmallU.item["7"] := "{u+2087}" ; (₇) subscript 7
781 cmpSmallU.item["8"] := "{u+2088}" ; (₈) subscript 8
782 cmpSmallU.item["9"] := "{u+2089}" ; (₉) subscript 9
783 cmpSmallU.item["0"] := "{u+2080}" ; (₀) subscript 0
784 cmpSmallU.item["a"] := "{u+2090}" ; (ₐ) subscript a
785 cmpSmallU.item["b"] := "{u+1d66}" ; (ᵦ) subscript beta
786 cmpSmallU.item["c"] := "{u+1d6a}" ; (ᵪ) subscript chi
787 cmpSmallU.item["e"] := "{u+2091}" ; (ₑ) subscript e
788 cmpSmallU.item["E"] := "{u+2094}" ; (ₔ) subscript schwa
789 cmpSmallU.item["f"] := "{u+1d69}" ; (ᵩ) subscript phi
790 cmpSmallU.item["g"] := "{u+1d67}" ; (ᵧ) subscript gamma
791 cmpSmallU.item["h"] := "{u+2095}" ; (ₕ) subscript h
792 cmpSmallU.item["i"] := "{u+1d62}" ; (ᵢ) subscript i
793 cmpSmallU.item["j"] := "{u+2c7c}" ; (ⱼ) subscript j
794 cmpSmallU.item["k"] := "{u+2096}" ; (ₖ) subscript k
795 cmpSmallU.item["l"] := "{u+2097}" ; (ₗ) subscript l
796 cmpSmallU.item["m"] := "{u+2098}" ; (ₘ) subscript m
797 cmpSmallU.item["n"] := "{u+2099}" ; (ₙ) subscript n
798 cmpSmallU.item["o"] := "{u+2092}" ; (ₒ) subscript o
799 cmpSmallU.item["p"] := "{u+209a}" ; (ₚ) subscript p
800 cmpSmallU.item["r"] := "{u+1d63}" ; (ᵣ) subscript r
801 cmpSmallU.item["R"] := "{u+1d68}" ; (ᵨ) subscript rho
802 cmpSmallU.item["s"] := "{u+209b}" ; (ₛ) subscript s
803 cmpSmallU.item["t"] := "{u+209c}" ; (ₜ) subscript t
804 cmpSmallU.item["u"] := "{u+1d64}" ; (ᵤ) subscript u
805 cmpSmallU.item["v"] := "{u+1d65}" ; (ᵥ) subscript v
806 cmpSmallU.item["x"] := "{u+2093}" ; (ₓ) subscript x
807 cmpSmallU.item["+"] := "{u+208a}" ; (₊) subscript +
808 cmpSmallU.item["-"] := "{u+208b}" ; (₋) subscript -
809 cmpSmallU.item["="] := "{u+208c}" ; (₌) subscript =
810 cmpSmallU.item["("] := "{u+208d}" ; (₍) subscript (
811 cmpSmallU.item[")"] := "{u+208e}" ; (₎) subscript )
812
813
814 ; Compose : Spacing Characters and Dashes
815
816 cmpSpace.item["1"] := "{u+2004}" ; three-per-em space
817 cmpSpace.item["2"] := "{u+2002}" ; en space
818 cmpSpace.item["3"] := "{u+2003}" ; em space
819 cmpSpace.item["4"] := "{u+2005}" ; four-per-em space
820 cmpSpace.item["6"] := "{u+2006}" ; six-per-em space
821 cmpSpace.item["9"] := "{u+2007}" ; figure space
822 cmpSpace.item["0"] := "{u+200b}" ; zero-width space (ZWSP)
823 cmpSpace.item["b"] := "{u+00a0}" ; non-breaking space (NBSP)
824 cmpSpace.item["m"] := "{u+205f}" ; medium mathematical space (MMSP)
825 cmpSpace.item["n"] := "{u+202f}" ; narrow no-break space (NNBSP)
826 cmpSpace.item["p"] := "{u+2008}" ; punctuation space
827 cmpSpace.item["t"] := "{u+2009}" ; thin space
828 cmpSpace.item["h"] := "{u+200a}" ; hair space
829 cmpSpace.item["."] := "{u+2008}" ; punctuation space
830 cmpMinus.item["1"] := "{u+2010}" ; (‐) hyphen
831 cmpMinus.item["2"] := "{u+2013}" ; (–) en dash
832 cmpMinus.item["3"] := "{u+2014}" ; (—) em dash
833 cmpMinus.item["4"] := "{u+2015}" ; (―) horizontal bar
834 cmpMinus.item["9"] := "{u+2012}" ; (‒) figure dash
835 cmpMinus.item["0"] := "{u+00ad}" ; (­) soft hyphen (SHY)
836 cmpMinus.item["-"] := "{u+2011}" ; (‑) non-breaking hyphen
837
838
839 ; Compose : Arrows and Pointing Triangles
840
841 cmpSmallA.item["w"] := "{u+25b2}" ; (▲) black up-pointing triangle
842 cmpSmallA.item["a"] := "{u+25c0}" ; (◀) black left-pointing triangle
843 cmpSmallA.item["s"] := "{u+25bc}" ; (▼) black down-pointing triangle
844 cmpSmallA.item["d"] := "{u+25b6}" ; (▶) black right-pointing triangle
845 cmpSmallA.item["i"] := "{u+25b3}" ; (△) white up-pointing triangle
846 cmpSmallA.item["j"] := "{u+25c1}" ; (◁) white left-pointing triangle
847 cmpSmallA.item["k"] := "{u+25bd}" ; (▽) white down-pointing triangle
848 cmpSmallA.item["l"] := "{u+25b7}" ; (▷) white right-pointing triangle
849 cmpSmallA.item["q"] := "{u+25a0}" ; (■) black square
850 cmpSmallA.item["u"] := "{u+25a1}" ; (□) white square
851 cmpSmallA.item["z"] := "{u+25c6}" ; (◆) black diamond
852 cmpSmallA.item["m"] := "{u+25c7}" ; (◇) white diamond
853 cmpSmallA.item["1"] := "{u+2199}" ; (↙) south west arrow
854 cmpSmallA.item["2"] := "{u+2193}" ; (↓) downwards arrow
855 cmpSmallA.item["3"] := "{u+2198}" ; (↘) south east arrow
856 cmpSmallA.item["4"] := "{u+2190}" ; (←) leftwards arrow
857 cmpSmallA.item["5"] := "{u+2195}" ; (↕) up down arrow
858 cmpSmallA.item["6"] := "{u+2192}" ; (→) rightwards arrow
859 cmpSmallA.item["7"] := "{u+2196}" ; (↖) north west arrow
860 cmpSmallA.item["8"] := "{u+2191}" ; (↑) upwards arrow
861 cmpSmallA.item["9"] := "{u+2197}" ; (↗) north east arrow
862 cmpSmallA.item["0"] := "{u+2194}" ; (↔) left right arrow
863 cmpSmallQ.item["w"] := "{u+25b4}" ; (▴) black up-pointing small triangle
864 cmpSmallQ.item["a"] := "{u+25c2}" ; (◂) black left-pointing small triangle
865 cmpSmallQ.item["s"] := "{u+25be}" ; (▾) black down-pointing small triangle
866 cmpSmallQ.item["d"] := "{u+25b8}" ; (▸) black right-pointing small triangle
867 cmpSmallQ.item["i"] := "{u+25b5}" ; (▵) white up-pointing small triangle
868 cmpSmallQ.item["j"] := "{u+25c3}" ; (◃) white left-pointing small triangle
869 cmpSmallQ.item["k"] := "{u+25bf}" ; (▿) white down-pointing small triangle
870 cmpSmallQ.item["l"] := "{u+25b9}" ; (▹) white right-pointing small triangle
871 cmpSmallQ.item["q"] := "{u+25aa}" ; (▪) black small square
872 cmpSmallQ.item["u"] := "{u+25ab}" ; (▫) white small square
873 cmpSmallQ.item["z"] := "{u+2b25}" ; (⬥) black medium diamond
874 cmpSmallQ.item["m"] := "{u+2b26}" ; (⬦) white medium diamond
875 cmpSmallQ.item["1"] := "{u+21d9}" ; (⇙) south west double arrow
876 cmpSmallQ.item["2"] := "{u+21d3}" ; (⇓) downwards double arrow
877 cmpSmallQ.item["3"] := "{u+21d8}" ; (⇘) south east double arrow
878 cmpSmallQ.item["4"] := "{u+21d0}" ; (⇐) leftwards double arrow
879 cmpSmallQ.item["5"] := "{u+21d5}" ; (⇕) up down double arrow
880 cmpSmallQ.item["6"] := "{u+21d2}" ; (⇒) rightwards double arrow
881 cmpSmallQ.item["7"] := "{u+21d6}" ; (⇖) north west double arrow
882 cmpSmallQ.item["8"] := "{u+21d1}" ; (⇑) upwards double arrow
883 cmpSmallQ.item["9"] := "{u+21d7}" ; (⇗) north east double arrow
884 cmpSmallQ.item["0"] := "{u+21d4}" ; (⇔) left right double arrow
885
886
887 ; Compose : Various Symbols (s)
888
889 cmpSmallS.item["a"] := "{u+2100}" ; (℀) account of
890 cmpSmallS.item["b"] := "{u+203d}" ; (‽) interrobang
891 cmpSmallS.item["B"] := "{u+2e18}" ; (⸘) inverted interrobang
892 cmpSmallS.item["c"] := "{u+2105}" ; (℅) care of
893 cmpSmallS.item["d"] := "{u+22c4}" ; (⋄) diamond operator
894 cmpSmallS.item["e"] := "{u+212e}" ; (℮) estimated symbol
895 cmpSmallS.item["f"] := "{u+2640}" ; (♀) female sign (Venus)
896 cmpSmallS.item["h"] := "{u+2302}" ; (⌂) house
897 cmpSmallS.item["H"] := "{u+2126}" ; (Ω) ohm sign (backwards compatibility)
898 cmpSmallS.item["i"] := "{u+2300}" ; (⌀) diameter sign
899 cmpSmallS.item["j"] := "{u+2101}" ; (℁) addressed to the subject
900 cmpSmallS.item["k"] := "{u+214d}" ; (⅍) aktieselskab
901 cmpSmallS.item["l"] := "{u+2113}" ; (ℓ) script small l
902 cmpSmallS.item["L"] := "{u+2112}" ; (ℒ) Laplace transform
903 cmpSmallS.item["m"] := "{u+2642}" ; (♂) male sign (Mars)
904 cmpSmallS.item["M"] := "{u+2120}" ; (℠) service mark
905 cmpSmallS.item["p"] := "{u+211e}" ; (℞) prescription take (Recipere)
906 cmpSmallS.item["P"] := "{u+211e}" ; (℞) prescription take (Recipere)
907 cmpSmallS.item["r"] := "{u+211f}" ; (℟) response (liturgy)
908 cmpSmallS.item["R"] := "{u+211f}" ; (℟) response (liturgy)
909 cmpSmallS.item["u"] := "{u+2106}" ; (℆) cada una (each one)
910 cmpSmallS.item["v"] := "{u+2123}" ; (℣) versicle (liturgy)
911 cmpSmallS.item["V"] := "{u+2123}" ; (℣) versicle (liturgy)
912 cmpSmallS.item["x"] := "{u+203b}" ; (※) reference mark
913 cmpSmallS.item["2"] := "{u+266b}" ; (♫) beamed eighth notes
914 cmpSmallS.item["3"] := "{u+2042}" ; (⁂) asterism
915 cmpSmallS.item["4"] := "{u+203b}" ; (※) reference mark
916 cmpSmallS.item["5"] := "{u+2605}" ; (★) black star
917 cmpSmallS.item["6"] := "{u+2606}" ; (☆) white star
918 cmpSmallS.item["8"] := "{u+266a}" ; (♪) eighth note
919 cmpSmallS.item["!"] := "{u+203c}" ; (‼) double exclamation mark
920 cmpSmallS.item["?"] := "{u+2e2e}" ; (⸮) reversed question mark
921 cmpSmallS.item["/"] := "{u+205e}" ; (⁞) vertical four dots
922 cmpSmallS.item["|"] := "{u+00a6}" ; (¦) broken bar
923
924
925 ; Compose : Math Symbols (m)
926
927 cmpSmallM.item["a"] := "{u+2200}" ; (∀) for all
928 cmpSmallM.item["A"] := "{u+2200}" ; (∀) for all
929 cmpSmallM.item["b"] := "{u+2286}" ; (⊆) subset of or equal to
930 cmpSmallM.item["B"] := "{u+2287}" ; (⊇) superset of or equal to
931 cmpSmallM.item["c"] := "{u+221d}" ; (∝) proportional to
932 cmpSmallM.item["C"] := "{u+2102}" ; (ℂ) complex numbers
933 cmpSmallM.item["d"] := "{u+2206}" ; (∆) increment operator
934 cmpSmallM.item["D"] := "{u+2207}" ; (∇) nabla/del operator
935 cmpSmallM.item["e"] := "{u+2203}" ; (∃) there exists
936 cmpSmallM.item["E"] := "{u+2204}" ; (∄) there does not exist
937 cmpSmallM.item["f"] := "{u+0192}" ; (ƒ) f with hook
938 cmpSmallM.item["F"] := "{u+220e}" ; (∎) end of proof
939 cmpSmallM.item["g"] := "{u+2282}" ; (⊂) subset of
940 cmpSmallM.item["G"] := "{u+2284}" ; (⊄) not a subset of
941 cmpSmallM.item["h"] := "{u+2283}" ; (⊃) superset of
942 cmpSmallM.item["H"] := "{u+2285}" ; (⊅) not a superset of
943 cmpSmallM.item["I"] := "{u+2111}" ; (ℑ) imaginary numbers
944 cmpSmallM.item["j"] := "{u+2245}" ; (≅) congruent to
945 cmpSmallM.item["J"] := "{u+2247}" ; (≇) not congruent to
946 cmpSmallM.item["k"] := "{u+220b}" ; (∋) contains as member
947 cmpSmallM.item["K"] := "{u+220c}" ; (∌) does not contain as member
948 cmpSmallM.item["l"] := "{u+2225}" ; (∥) parallel to
949 cmpSmallM.item["L"] := "{u+2226}" ; (∦) not parallel to
950 cmpSmallM.item["m"] := "{u+2208}" ; (∈) element of
951 cmpSmallM.item["M"] := "{u+2209}" ; (∉) not an element of
952 cmpSmallM.item["n"] := "{u+00ac}" ; (¬) not sign
953 cmpSmallM.item["N"] := "{u+2115}" ; (ℕ) natural numbers
954 cmpSmallM.item["o"] := "{u+2218}" ; (∘) ring operator
955 cmpSmallM.item["O"] := "{u+2205}" ; (∅) empty set
956 cmpSmallM.item["p"] := "{u+2202}" ; (∂) partial differential
957 cmpSmallM.item["P"] := "{u+2119}" ; (ℙ) prime numbers
958 cmpSmallM.item["Q"] := "{u+211a}" ; (ℚ) rational numbers
959 cmpSmallM.item["R"] := "{u+211d}" ; (ℝ) real numbers
960 cmpSmallM.item["s"] := "{u+2229}" ; (∩) set intersection
961 cmpSmallM.item["S"] := "{u+222b}" ; (∫) integral symbol
962 cmpSmallM.item["t"] := "{u+2261}" ; (≡) identical to
963 cmpSmallM.item["T"] := "{u+2262}" ; (≢) not identical to
964 cmpSmallM.item["u"] := "{u+222a}" ; (∪) set union
965 cmpSmallM.item["U"] := "{u+2216}" ; (∖) set minus
966 cmpSmallM.item["w"] := "{u+2118}" ; (℘) Weierstrass elliptic function
967 cmpSmallM.item["z"] := "{u+21af}" ; (↯) downwards zigzag arrow
968 cmpSmallM.item["Z"] := "{u+2124}" ; (ℤ) whole numbers
969 cmpSmallM.item["2"] := "{u+2236}" ; (∶) ratio symbol
970 cmpSmallM.item["4"] := "{u+2237}" ; (∷) proportion sign
971 cmpSmallM.item["6"] := "{u+2220}" ; (∠) angle symbol
972 cmpSmallM.item["9"] := "{u+221f}" ; (∟) right angle
973 cmpSmallM.item["0"] := "{u+2221}" ; (∡) measured angle
974 cmpSmallM.item["."] := "{u+22c5}" ; (⋅) dot operator
975 cmpSmallM.item["="] := "{u+225d}" ; (≝) equal to by definition
976 cmpSmallM.item["+"] := "{u+2295}" ; (⊕) circled plus
977 cmpSmallM.item["-"] := "{u+2296}" ; (⊖) circled minus
978 cmpSmallM.item["*"] := "{u+2297}" ; (⊗) circled times
979 cmpSmallM.item["/"] := "{u+2298}" ; (⊘) circled division slash
980 cmpSmallM.item[";"] := "{u+2235}" ; (∵) because sign
981 cmpSmallM.item[":"] := "{u+2234}" ; (∴) therefore sign
982 cmpSmallM.item["&"] := "{u+2227}" ; (∧) logical and
983 cmpSmallM.item["|"] := "{u+2228}" ; (∨) logical or
984
985
986 ; Compose : Special Letters/Characters
987
988 cmpSmallA.item["e"] := "{u+00e6}" ; (æ) letter ae
989 cmpCapitalA.item["E"] := "{u+00c6}" ; (Æ) letter AE
990 cmpSmallD.item["h"] := "{u+00f0}" ; (ð) small letter eth
991 cmpCapitalD.item["H"] := "{u+00d0}" ; (Ð) capital letter eth
992 cmpSmallF.item["s"] := "{u+017f}" ; (ſ) small letter long s
993 cmpSmallI.item["j"] := "{u+0133}" ; (ij) ligature ij
994 cmpCapitalI.item["J"] := "{u+0132}" ; (IJ) ligature IJ
995 cmpSmallN.item["g"] := "{u+014b}" ; (ŋ) small letter eng(ma)
996 cmpCapitalN.item["G"] := "{u+014a}" ; (Ŋ) capital letter eng(ma)
997 cmpSmallO.item["e"] := "{u+0153}" ; (œ) ligature oe
998 cmpCapitalO.item["E"] := "{u+0152}" ; (Œ) ligature OE
999 cmpSmallS.item["s"] := "{u+00df}" ; (ß) small sharp s (Eszett)
1000 cmpCapitalS.item["S"] := "{u+1e9e}" ; (ẞ) capital sharp S (capital Eszett)
1001 cmpSmallT.item["h"] := "{u+00fe}" ; (þ) small letter thorn
1002 cmpCapitalT.item["H"] := "{u+00de}" ; (Þ) capital letter thorn
1003
1004
1005 ; Compose : General/Math Symbols
1006
1007 cmpSmallD.item["d"] := "{u+2020}" ; (†) dagger
1008 cmpCapitalD.item["D"] := "{u+2021}" ; (‡) double dagger
1009 cmpSmallI.item["i"] := "{u+221e}" ; (∞) infinity symbol
1010 cmpDigit8.item["8"] := "{u+221e}" ; (∞) infinity symbol
1011 cmpSmallM.item["i"] := "{u+00b5}" ; (µ) micro sign
1012 cmpSmallN.item["o"] := "{u+2116}" ; (№) numero sign
1013 cmpCapitalN.item["o"] := "{u+2116}" ; (№) numero sign
1014 cmpSmallO.item["x"] := "{u+00a4}" ; (¤) currency sign
1015 cmpSmallP.item["p"] := "{u+00b6}" ; (¶) pilcrow sign
1016 cmpCapitalP.item["P"] := "{u+00b6}" ; (¶) pilcrow sign
1017 cmpSmallR.item["2"] := "{u+221a}" ; (√) square root
1018 cmpSmallR.item["3"] := "{u+221b}" ; (∛) cube root
1019 cmpSmallR.item["4"] := "{u+221c}" ; (∜) fourth root
1020 cmpSmallS.item["o"] := "{u+00a7}" ; (§) section sign
1021 cmpCapitalS.item["o"] := "{u+00a7}" ; (§) section sign
1022 cmpSmallT.item["m"] := "{u+2122}" ; (™) trademark symbol
1023 cmpSmallV.item["v"] := "{u+2713}" ; (✓) check mark
1024 cmpSmallY.item["y"] := "{u+2713}" ; (✓) check mark
1025 cmpCapitalV.item["V"] := "{u+2714}" ; (✔) heavy check mark
1026 cmpCapitalY.item["Y"] := "{u+2714}" ; (✔) heavy check mark
1027 cmpSmallX.item["x"] := "{u+2717}" ; (✗) ballot x
1028 cmpCapitalX.item["X"] := "{u+2718}" ; (✘) heavy ballot x
1029 cmpVerticalLine.item["|"] := "{u+2016}" ; (‖) double vertical line
1030 cmpApostrophe.item["1"] := "{u+2032}" ; (′) prime
1031 cmpApostrophe.item["2"] := "{u+2033}" ; (″) double prime
1032 cmpApostrophe.item["3"] := "{u+2034}" ; (‴) triple prime
1033 cmpApostrophe.item["4"] := "{u+2057}" ; (⁗) quadruple prime
1034 cmpAsterisk.item["*"] := "{u+00d7}" ; (×) multiplication sign
1035 cmpSlash.item["/"] := "{u+00f7}" ; (÷) division sign
1036 cmpAsterisk.item["o"] := "{u+00b0}" ; (°) degree sign
1037 cmpSmallO.item["*"] := "{u+00b0}" ; (°) degree sign
1038 cmpPeriod.item["-"] := "{u+00b7}" ; (·) middle dot
1039 cmpPeriod.item["3"] := "{u+2026}" ; (…) horizontal ellipsis
1040 cmpPeriod.item["."] := "{u+2026}" ; (…) horizontal ellipsis
1041 cmpSmallA.item["-"] := "{u+00aa}" ; (ª) feminine ordinal indicator (Spanish, Portuguese, Italian, Galician)
1042 cmpSmallO.item["-"] := "{u+00ba}" ; (º) masculine ordinal indicator (Spanish, Portuguese, Italian, Galician)
1043 cmpExclam.item["!"] := "{u+00a1}" ; (¡) inverted exclamation mark
1044 cmpQuestion.item["?"] := "{u+00bf}" ; (¿) inverted question mark
1045 cmpSmallO.item["c"] := "{u+00a9}" ; (©) copyright sign
1046 cmpParenLeft.item["c"] := "{u+00a9}" ; (©) copyright sign
1047 cmpSmallO.item["p"] := "{u+2117}" ; (℗) sound recording copyright
1048 cmpParenLeft.item["p"] := "{u+2117}" ; (℗) sound recording copyright
1049 cmpSmallO.item["r"] := "{u+00ae}" ; (®) registered sign
1050 cmpParenLeft.item["r"] := "{u+00ae}" ; (®) registered sign
1051 cmpPlus.item["-"] := "{u+00b1}" ; (±) plus-minus sign
1052 cmpMinus.item["+"] := "{u+2213}" ; (∓) minus-or-plus sign
1053 cmpPercent.item["%"] := "{u+2030}" ; (‰) per mille sign
1054 cmpPercent.item["3"] := "{u+2030}" ; (‰) per mille sign
1055 cmpPercent.item["4"] := "{u+2031}" ; (‱) per ten thousand sign
1056 cmpExclam.item["="] := "{u+2260}" ; (≠) not equal to
1057 cmpLess.item[">"] := "{u+2260}" ; (≠) not equal to
1058 cmpLess.item["="] := "{u+2264}" ; (≤) less-than or equal to
1059 cmpGreater.item["="] := "{u+2265}" ; (≥) greater-than or equal to
1060 cmpLess.item["+"] := "{u+2a7d}" ; (⩽) less-than or slanted equal to
1061 cmpGreater.item["+"] := "{u+2a7e}" ; (⩾) greater-than or slanted equal to
1062 cmpTilde.item["~"] := "{u+2248}" ; (≈) almost equal to
1063 cmpSemicolon.item["b"] := "{u+2022}" ; (•) bullet
1064 cmpSemicolon.item["o"] := "{u+25e6}" ; (◦) white bullet
1065 cmpSemicolon.item["w"] := "{u+25e6}" ; (◦) white bullet
1066 cmpSemicolon.item["h"] := "{u+2043}" ; (⁃) hyphen bullet
1067 cmpSemicolon.item["t"] := "{u+2023}" ; (‣) triangular bullet
1068 cmpSemicolon.item[";"] := "{u+2022}" ; (•) bullet
1069 cmpBracketLeft.item["]"] := "{u+2610}" ; (☐) ballot box
1070 cmpBracketLeft.item["v"] := "{u+2611}" ; (☑) ballot box with check
1071 cmpBracketLeft.item["y"] := "{u+2611}" ; (☑) ballot box with check
1072 cmpBracketLeft.item["x"] := "{u+2612}" ; (☒) ballot box with x
1073
1074
1075 ; Compose : Vulgar Fractions
1076
1077 cmpDigit1.item["2"] := "{u+00bd}" ; (½) vulgar fraction 1/2
1078 cmpDigit1.item["3"] := "{u+2153}" ; (⅓) vulgar fraction 1/3
1079 cmpDigit2.item["3"] := "{u+2154}" ; (⅔) vulgar fraction 2/3
1080 cmpDigit1.item["4"] := "{u+00bc}" ; (¼) vulgar fraction 1/4
1081 cmpDigit3.item["4"] := "{u+00be}" ; (¾) vulgar fraction 3/4
1082 cmpDigit1.item["5"] := "{u+2155}" ; (⅕) vulgar fraction 1/5
1083 cmpDigit2.item["5"] := "{u+2156}" ; (⅖) vulgar fraction 2/5
1084 cmpDigit3.item["5"] := "{u+2157}" ; (⅗) vulgar fraction 3/5
1085 cmpDigit4.item["5"] := "{u+2158}" ; (⅘) vulgar fraction 4/5
1086 cmpDigit1.item["6"] := "{u+2159}" ; (⅙) vulgar fraction 1/6
1087 cmpDigit5.item["6"] := "{u+215a}" ; (⅚) vulgar fraction 5/6
1088 cmpDigit1.item["7"] := "{u+2150}" ; (⅐) vulgar fraction 1/7
1089 cmpDigit1.item["8"] := "{u+215b}" ; (⅛) vulgar fraction 1/8
1090 cmpDigit3.item["8"] := "{u+215c}" ; (⅜) vulgar fraction 3/8
1091 cmpDigit5.item["8"] := "{u+215d}" ; (⅝) vulgar fraction 5/8
1092 cmpDigit7.item["8"] := "{u+215e}" ; (⅞) vulgar fraction 7/8
1093 cmpDigit1.item["9"] := "{u+2151}" ; (⅑) vulgar fraction 1/9
1094 cmpDigit1.item["0"] := "{u+2152}" ; (⅒) vulgar fraction 1/10
1095 cmpDigit0.item["3"] := "{u+2189}" ; (↉) vulgar fraction 0/3
1096
1097
1098 ; Compose : Quotation Marks
1099
1100 cmpComma.item[chr(34)] := "{u+201e}" ; („) double low-9 quotation mark
1101 cmpQuote.item[","] := "{u+201e}" ; („) double low-9 quotation mark
1102 cmpComma.item["'"] := "{u+201a}" ; (‚) single low-9 quotation mark
1103 cmpApostrophe.item[","] := "{u+201a}" ; (‚) single low-9 quotation mark
1104 cmpComma.item[","] := "{u+201a}" ; (‚) single low-9 quotation mark
1105 cmpQuote.item["["] := "{u+201c}" ; (“) left double quotation mark
1106 cmpBracketLeft.item[chr(34)] := "{u+201c}" ; (“) left double quotation mark
1107 cmpQuote.item["]"] := "{u+201d}" ; (”) right double quotation mark
1108 cmpBracketRight.item[chr(34)] := "{u+201d}" ; (”) right double quotation mark
1109 cmpApostrophe.item["["] := "{u+2018}" ; (‘) left single quotation mark
1110 cmpBracketLeft.item["'"] := "{u+2018}" ; (‘) left single quotation mark
1111 cmpApostrophe.item["]"] := "{u+2019}" ; (’) right single quotation mark
1112 cmpBracketRight.item["'"] := "{u+2019}" ; (’) right single quotation mark
1113 cmpBackslash.item[chr(34)] := "{u+201f}" ; (‟) double high-reversed-9 quotation mark
1114 cmpQuote.item["\"] := "{u+201f}" ; (‟) double high-reversed-9 quotation mark
1115 cmpBackslash.item["'"] := "{u+201b}" ; (‛) single high-reversed-9 quotation mark
1116 cmpApostrophe.item["\"] := "{u+201b}" ; (‛) single high-reversed-9 quotation mark
1117 cmpLess.item["<"] := "{u+00ab}" ; («) left-pointing double angle quotation mark
1118 cmpLess.item[chr(34)] := "{u+00ab}" ; («) left-pointing double angle quotation mark
1119 cmpQuote.item["<"] := "{u+00ab}" ; («) left-pointing double angle quotation mark
1120 cmpGreater.item[">"] := "{u+00bb}" ; (») right-pointing double angle quotation mark
1121 cmpGreater.item[chr(34)] := "{u+00bb}" ; (») right-pointing double angle quotation mark
1122 cmpQuote.item[">"] := "{u+00bb}" ; (») right-pointing double angle quotation mark
1123 cmpLess.item["'"] := "{u+2039}" ; (‹) left-pointing single angle quotation mark
1124 cmpApostrophe.item["<"] := "{u+2039}" ; (‹) left-pointing single angle quotation mark
1125 cmpGreater.item["'"] := "{u+203a}" ; (›) right-pointing single angle quotation mark
1126 cmpApostrophe.item[">"] := "{u+203a}" ; (›) right-pointing single angle quotation mark
1127
1128
1129 ; Compose : Chess Pieces and Playing Card Suit Symbols (C)
1130
1131 cmpCapitalC.item["k"] := "{u+2654}" ; (♔) white chess king
1132 cmpCapitalC.item["q"] := "{u+2655}" ; (♕) white chess queen
1133 cmpCapitalC.item["r"] := "{u+2656}" ; (♖) white chess rook
1134 cmpCapitalC.item["b"] := "{u+2657}" ; (♗) white chess bishop
1135 cmpCapitalC.item["n"] := "{u+2658}" ; (♘) white chess knight
1136 cmpCapitalC.item["p"] := "{u+2659}" ; (♙) white chess pawn
1137 cmpCapitalC.item["K"] := "{u+265a}" ; (♚) black chess king
1138 cmpCapitalC.item["Q"] := "{u+265b}" ; (♛) black chess queen
1139 cmpCapitalC.item["R"] := "{u+265c}" ; (♜) black chess rook
1140 cmpCapitalC.item["B"] := "{u+265d}" ; (♝) black chess bishop
1141 cmpCapitalC.item["N"] := "{u+265e}" ; (♞) black chess knight
1142 cmpCapitalC.item["P"] := "{u+265f}" ; (♟) black chess pawn
1143 cmpCapitalC.item["c"] := "{u+2667}" ; (♧) white club suit
1144 cmpCapitalC.item["C"] := "{u+2663}" ; (♣) black club suit
1145 cmpCapitalC.item["d"] := "{u+2662}" ; (♢) white diamond suit
1146 cmpCapitalC.item["D"] := "{u+2666}" ; (♦) black diamond suit
1147 cmpCapitalC.item["h"] := "{u+2661}" ; (♡) white heart suit
1148 cmpCapitalC.item["H"] := "{u+2665}" ; (♥) black heart suit
1149 cmpCapitalC.item["s"] := "{u+2664}" ; (♤) white spade suit
1150 cmpCapitalC.item["S"] := "{u+2660}" ; (♠) black spade suit
1151
1152
1153 ; Compose : Double Grave Accent (G)
1154
1155 cmpCapitalG.item["a"] := "{u+0201}" ; (ȁ) a with double grave
1156 cmpCapitalG.item["A"] := "{u+0200}" ; (Ȁ) A with double grave
1157 cmpCapitalG.item["e"] := "{u+0205}" ; (ȅ) e with double grave
1158 cmpCapitalG.item["E"] := "{u+0204}" ; (Ȅ) E with double grave
1159 cmpCapitalG.item["i"] := "{u+0209}" ; (ȉ) i with double grave
1160 cmpCapitalG.item["I"] := "{u+0208}" ; (Ȉ) I with double grave
1161 cmpCapitalG.item["o"] := "{u+020d}" ; (ȍ) o with double grave
1162 cmpCapitalG.item["O"] := "{u+020c}" ; (Ȍ) O with double grave
1163 cmpCapitalG.item["r"] := "{u+0211}" ; (ȑ) r with double grave
1164 cmpCapitalG.item["R"] := "{u+0210}" ; (Ȑ) R with double grave
1165 cmpCapitalG.item["u"] := "{u+0215}" ; (ȕ) u with double grave
1166 cmpCapitalG.item["U"] := "{u+0214}" ; (Ȕ) U with double grave
1167
1168
1169 ; Compose : Inverted Breve (B)
1170
1171 cmpCapitalB.item["a"] := "{u+0203}" ; (ȃ) a with inverted breve
1172 cmpCapitalB.item["A"] := "{u+0202}" ; (Ȃ) A with inverted breve
1173 cmpCapitalB.item["e"] := "{u+0207}" ; (ȇ) e with inverted breve
1174 cmpCapitalB.item["E"] := "{u+0206}" ; (Ȇ) E with inverted breve
1175 cmpCapitalB.item["i"] := "{u+020b}" ; (ȋ) i with inverted breve
1176 cmpCapitalB.item["I"] := "{u+020a}" ; (Ȋ) I with inverted breve
1177 cmpCapitalB.item["o"] := "{u+020f}" ; (ȏ) o with inverted breve
1178 cmpCapitalB.item["O"] := "{u+020e}" ; (Ȏ) O with inverted breve
1179 cmpCapitalB.item["r"] := "{u+0213}" ; (ȓ) r with inverted breve
1180 cmpCapitalB.item["R"] := "{u+0212}" ; (Ȓ) R with inverted breve
1181 cmpCapitalB.item["u"] := "{u+0217}" ; (ȗ) u with inverted breve
1182 cmpCapitalB.item["U"] := "{u+0216}" ; (Ȗ) U with inverted breve
1183
1184
1185 ; Compose : Circumflex Below (I)
1186
1187 cmpCapitalI.item["d"] := "{u+1e13}" ; (ḓ) d with circumflex below
1188 cmpCapitalI.item["D"] := "{u+1e12}" ; (Ḓ) D with circumflex below
1189 cmpCapitalI.item["e"] := "{u+1e19}" ; (ḙ) e with circumflex below
1190 cmpCapitalI.item["E"] := "{u+1e18}" ; (Ḙ) E with circumflex below
1191 cmpCapitalI.item["l"] := "{u+1e3d}" ; (ḽ) l with circumflex below
1192 cmpCapitalI.item["L"] := "{u+1e3c}" ; (Ḽ) L with circumflex below
1193 cmpCapitalI.item["n"] := "{u+1e4b}" ; (ṋ) n with circumflex below
1194 cmpCapitalI.item["N"] := "{u+1e4a}" ; (Ṋ) N with circumflex below
1195 cmpCapitalI.item["t"] := "{u+1e71}" ; (ṱ) t with circumflex below
1196 cmpCapitalI.item["T"] := "{u+1e70}" ; (Ṱ) T with circumflex below
1197 cmpCapitalI.item["u"] := "{u+1e77}" ; (ṷ) u with circumflex below
1198 cmpCapitalI.item["U"] := "{u+1e76}" ; (Ṷ) U with circumflex below
1199
1200
1201 ; Compose : Tilde Below (T)
1202
1203 cmpCapitalT.item["e"] := "{u+1e1b}" ; (ḛ) e with tilde below
1204 cmpCapitalT.item["E"] := "{u+1e1a}" ; (Ḛ) E with tilde below
1205 cmpCapitalT.item["i"] := "{u+1e2d}" ; (ḭ) i with tilde below
1206 cmpCapitalT.item["I"] := "{u+1e2c}" ; (Ḭ) I with tilde below
1207 cmpCapitalT.item["u"] := "{u+1e75}" ; (ṵ) u with tilde below
1208 cmpCapitalT.item["U"] := "{u+1e74}" ; (Ṵ) U with tilde below
1209
1210
1211 ; Compose : Line Below (L)
1212
1213 cmpCapitalL.item["b"] := "{u+1e07}" ; (ḇ) b with line below
1214 cmpCapitalL.item["B"] := "{u+1e06}" ; (Ḇ) B with line below
1215 cmpCapitalL.item["d"] := "{u+1e0f}" ; (ḏ) d with line below
1216 cmpCapitalL.item["D"] := "{u+1e0e}" ; (Ḏ) D with line below
1217 cmpCapitalL.item["h"] := "{u+1e96}" ; (ẖ) h with line below
1218 cmpCapitalL.item["k"] := "{u+1e35}" ; (ḵ) k with line below
1219 cmpCapitalL.item["K"] := "{u+1e34}" ; (Ḵ) K with line below
1220 cmpCapitalL.item["l"] := "{u+1e3b}" ; (ḻ) l with line below
1221 cmpCapitalL.item["L"] := "{u+1e3a}" ; (Ḻ) L with line below
1222 cmpCapitalL.item["n"] := "{u+1e49}" ; (ṉ) n with line below
1223 cmpCapitalL.item["N"] := "{u+1e48}" ; (Ṉ) N with line below
1224 cmpCapitalL.item["r"] := "{u+1e5f}" ; (ṟ) r with line below
1225 cmpCapitalL.item["R"] := "{u+1e5e}" ; (Ṟ) R with line below
1226 cmpCapitalL.item["t"] := "{u+1e6f}" ; (ṯ) t with line below
1227 cmpCapitalL.item["T"] := "{u+1e6e}" ; (Ṯ) T with line below
1228 cmpCapitalL.item["z"] := "{u+1e95}" ; (ẕ) z with line below
1229 cmpCapitalL.item["Z"] := "{u+1e94}" ; (Ẕ) Z with line below
1230
1231
1232 ; Compose : Ring Below, Breve Below and Diaeresis Below (R)
1233
1234 cmpCapitalR.item["a"] := "{u+1e01}" ; (ḁ) a with ring below
1235 cmpCapitalR.item["A"] := "{u+1e00}" ; (Ḁ) A with ring below
1236 cmpCapitalR.item["h"] := "{u+1e2b}" ; (ḫ) h with breve below
1237 cmpCapitalR.item["H"] := "{u+1e2a}" ; (Ḫ) H with breve below
1238 cmpCapitalR.item["u"] := "{u+1e73}" ; (ṳ) u with diaeresis below
1239 cmpCapitalR.item["U"] := "{u+1e72}" ; (Ṳ) U with diaeresis below
1240
1241
1242 ; Compose : Hook Above (<)
1243
1244 cmpLess.item["a"] := "{u+1ea3}" ; (ả) a with hook above
1245 cmpLess.item["A"] := "{u+1ea2}" ; (Ả) A with hook above
1246 cmpLess.item["e"] := "{u+1ebb}" ; (ẻ) e with hook above
1247 cmpLess.item["E"] := "{u+1eba}" ; (Ẻ) E with hook above
1248 cmpLess.item["i"] := "{u+1ec9}" ; (ỉ) i with hook above
1249 cmpLess.item["I"] := "{u+1ec8}" ; (Ỉ) I with hook above
1250 cmpLess.item["o"] := "{u+1ecf}" ; (ỏ) o with hook above
1251 cmpLess.item["O"] := "{u+1ece}" ; (Ỏ) O with hook above
1252 cmpLess.item["u"] := "{u+1ee7}" ; (ủ) u with hook above
1253 cmpLess.item["U"] := "{u+1ee6}" ; (Ủ) U with hook above
1254 cmpLess.item["y"] := "{u+1ef7}" ; (ỷ) y with hook above
1255 cmpLess.item["Y"] := "{u+1ef6}" ; (Ỷ) Y with hook above
1256
1257
1258 ; Compose : Dot Below (>)
1259
1260 cmpGreater.item["a"] := "{u+1ea1}" ; (ạ) a with dot below
1261 cmpGreater.item["A"] := "{u+1ea0}" ; (Ạ) A with dot below
1262 cmpGreater.item["b"] := "{u+1e05}" ; (ḅ) b with dot below
1263 cmpGreater.item["B"] := "{u+1e04}" ; (Ḅ) B with dot below
1264 cmpGreater.item["d"] := "{u+1e0d}" ; (ḍ) d with dot below
1265 cmpGreater.item["D"] := "{u+1e0c}" ; (Ḍ) D with dot below
1266 cmpGreater.item["e"] := "{u+1eb9}" ; (ẹ) e with dot below
1267 cmpGreater.item["E"] := "{u+1eb8}" ; (Ẹ) E with dot below
1268 cmpGreater.item["h"] := "{u+1e25}" ; (ḥ) h with dot below
1269 cmpGreater.item["H"] := "{u+1e24}" ; (Ḥ) H with dot below
1270 cmpGreater.item["i"] := "{u+1ecb}" ; (ị) i with dot below
1271 cmpGreater.item["I"] := "{u+1eca}" ; (Ị) I with dot below
1272 cmpGreater.item["k"] := "{u+1e33}" ; (ḳ) k with dot below
1273 cmpGreater.item["K"] := "{u+1e32}" ; (Ḳ) K with dot below
1274 cmpGreater.item["l"] := "{u+1e37}" ; (ḷ) l with dot below
1275 cmpGreater.item["L"] := "{u+1e36}" ; (Ḷ) L with dot below
1276 cmpGreater.item["m"] := "{u+1e43}" ; (ṃ) m with dot below
1277 cmpGreater.item["M"] := "{u+1e42}" ; (Ṃ) M with dot below
1278 cmpGreater.item["n"] := "{u+1e47}" ; (ṇ) n with dot below
1279 cmpGreater.item["N"] := "{u+1e46}" ; (Ṇ) N with dot below
1280 cmpGreater.item["o"] := "{u+1ecd}" ; (ọ) o with dot below
1281 cmpGreater.item["O"] := "{u+1ecc}" ; (Ọ) O with dot below
1282 cmpGreater.item["r"] := "{u+1e5b}" ; (ṛ) r with dot below
1283 cmpGreater.item["R"] := "{u+1e5a}" ; (Ṛ) R with dot below
1284 cmpGreater.item["s"] := "{u+1e63}" ; (ṣ) s with dot below
1285 cmpGreater.item["S"] := "{u+1e62}" ; (Ṣ) S with dot below
1286 cmpGreater.item["t"] := "{u+1e6d}" ; (ṭ) t with dot below
1287 cmpGreater.item["T"] := "{u+1e6c}" ; (Ṭ) T with dot below
1288 cmpGreater.item["u"] := "{u+1ee5}" ; (ụ) u with dot below
1289 cmpGreater.item["U"] := "{u+1ee4}" ; (Ụ) U with dot below
1290 cmpGreater.item["v"] := "{u+1e7f}" ; (ṿ) v with dot below
1291 cmpGreater.item["V"] := "{u+1e7e}" ; (Ṿ) V with dot below
1292 cmpGreater.item["w"] := "{u+1e89}" ; (ẉ) w with dot below
1293 cmpGreater.item["W"] := "{u+1e88}" ; (Ẉ) W with dot below
1294 cmpGreater.item["y"] := "{u+1ef5}" ; (ỵ) y with dot below
1295 cmpGreater.item["Y"] := "{u+1ef4}" ; (Ỵ) Y with dot below
1296 cmpGreater.item["z"] := "{u+1e93}" ; (ẓ) z with dot below
1297 cmpGreater.item["Z"] := "{u+1e92}" ; (Ẓ) Z with dot below
1298
1299
1300 ; Accented Letters with Dot Below (?)
1301
1302 cmpQuestion.item["a"] := "{u+1ead}" ; (ậ) a with circumflex and dot below
1303 cmpQuestion.item["A"] := "{u+1eac}" ; (Ậ) A with circumflex and dot below
1304 cmpQuestion.item["b"] := "{u+1eb7}" ; (ặ) a with breve and dot below
1305 cmpQuestion.item["B"] := "{u+1eb6}" ; (Ặ) A with breve and dot below
1306 cmpQuestion.item["e"] := "{u+1ec7}" ; (ệ) e with circumflex and dot below
1307 cmpQuestion.item["E"] := "{u+1ec6}" ; (Ệ) E with circumflex and dot below
1308 cmpQuestion.item["f"] := "{u+1e1d}" ; (ḝ) e with cedilla and breve
1309 cmpQuestion.item["F"] := "{u+1e1c}" ; (Ḝ) E with cedilla and breve
1310 cmpQuestion.item["l"] := "{u+1e39}" ; (ḹ) l with dot below and macron
1311 cmpQuestion.item["L"] := "{u+1e38}" ; (Ḹ) L with dot below and macron
1312 cmpQuestion.item["o"] := "{u+1ed9}" ; (ộ) o with circumflex and dot below
1313 cmpQuestion.item["O"] := "{u+1ed8}" ; (Ộ) O with circumflex and dot below
1314 cmpQuestion.item["r"] := "{u+1e5d}" ; (ṝ) r with dot below and macron
1315 cmpQuestion.item["R"] := "{u+1e5c}" ; (Ṝ) R with dot below and macron
1316 cmpQuestion.item["s"] := "{u+1e69}" ; (ṩ) s with dot below and dot above
1317 cmpQuestion.item["S"] := "{u+1e68}" ; (Ṩ) S with dot below and dot above
1318 cmpQuestion.item["t"] := "{u+1ee3}" ; (ợ) o with horn and dot below
1319 cmpQuestion.item["T"] := "{u+1ee2}" ; (Ợ) O with horn and dot below
1320 cmpQuestion.item["u"] := "{u+1ef1}" ; (ự) u with horn and dot below
1321 cmpQuestion.item["U"] := "{u+1ef0}" ; (Ự) U with horn and dot below
1322
1323
1324 ; Compose : Miscellaneous Symbols and Dingbats
1325
1326 cmpDigit1.item["a"] := "{u+2600}" ; (☀) black sun with rays
1327 cmpDigit1.item["b"] := "{u+2601}" ; (☁) cloud
1328 cmpDigit1.item["c"] := "{u+2602}" ; (☂) umbrella
1329 cmpDigit1.item["d"] := "{u+2603}" ; (☃) snowman
1330 cmpDigit1.item["e"] := "{u+2604}" ; (☄) comet
1331 cmpDigit1.item["f"] := "{u+2605}" ; (★) black star
1332 cmpDigit1.item["g"] := "{u+2606}" ; (☆) white star
1333 cmpDigit1.item["h"] := "{u+260e}" ; (☎) black telephone
1334 cmpDigit1.item["i"] := "{u+260f}" ; (☏) white telephone
1335 cmpDigit1.item["j"] := "{u+2610}" ; (☐) ballot box
1336 cmpDigit1.item["k"] := "{u+2611}" ; (☑) ballot box with check
1337 cmpDigit1.item["l"] := "{u+2612}" ; (☒) ballot box with x
1338 cmpDigit1.item["m"] := "{u+2619}" ; (☙) reversed rotated floral heart bullet
1339 cmpDigit1.item["n"] := "{u+261a}" ; (☚) black left-pointing index
1340 cmpDigit1.item["o"] := "{u+261b}" ; (☛) black right-pointing index
1341 cmpDigit1.item["p"] := "{u+261c}" ; (☜) white left-pointing index
1342 cmpDigit1.item["q"] := "{u+261d}" ; (☝) white up-pointing index
1343 cmpDigit1.item["r"] := "{u+261e}" ; (☞) white right-pointing index
1344 cmpDigit1.item["s"] := "{u+261f}" ; (☟) white down-pointing index
1345 cmpDigit1.item["t"] := "{u+2620}" ; (☠) skull and crossbones
1346 cmpDigit1.item["u"] := "{u+2621}" ; (☡) caution sign
1347 cmpDigit1.item["v"] := "{u+2622}" ; (☢) radioactive sign
1348 cmpDigit1.item["w"] := "{u+2623}" ; (☣) biohazard sign
1349 cmpDigit1.item["x"] := "{u+2639}" ; (☹) white frowning face
1350 cmpDigit1.item["y"] := "{u+263a}" ; (☺) white smiling face
1351 cmpDigit1.item["z"] := "{u+263b}" ; (☻) black smiling face
1352
1353 cmpDigit2.item["a"] := "{u+263c}" ; (☼) white sun with rays
1354 cmpDigit2.item["b"] := "{u+263d}" ; (☽) first quarter moon
1355 cmpDigit2.item["c"] := "{u+263e}" ; (☾) last quarter moon
1356 cmpDigit2.item["d"] := "{u+2640}" ; (♀) female sign (Venus)
1357 cmpDigit2.item["e"] := "{u+2642}" ; (♂) male sign (Mars)
1358 cmpDigit2.item["f"] := "{u+2668}" ; (♨) hot springs
1359 cmpDigit2.item["g"] := "{u+2669}" ; (♩) quarter note
1360 cmpDigit2.item["h"] := "{u+266a}" ; (♪) eighth note
1361 cmpDigit2.item["i"] := "{u+266b}" ; (♫) beamed eighth notes
1362 cmpDigit2.item["j"] := "{u+266c}" ; (♬) beamed sixteenth notes
1363 cmpDigit2.item["k"] := "{u+266d}" ; (♭) music flat sign
1364 cmpDigit2.item["l"] := "{u+266e}" ; (♮) music natural sign
1365 cmpDigit2.item["m"] := "{u+266f}" ; (♯) music sharp sign
1366 cmpDigit2.item["n"] := "{u+2672}" ; (♲) universal recycling symbol
1367 cmpDigit2.item["o"] := "{u+267a}" ; (♺) recycling symbol for generic materials
1368 cmpDigit2.item["p"] := "{u+267b}" ; (♻) black universal recycling symbol
1369 cmpDigit2.item["q"] := "{u+267f}" ; (♿) wheelchair symbol
1370 cmpDigit2.item["r"] := "{u+2690}" ; (⚐) white flag
1371 cmpDigit2.item["s"] := "{u+2691}" ; (⚑) black flag
1372 cmpDigit2.item["t"] := "{u+26a0}" ; (⚠) warning sign
1373 cmpDigit2.item["u"] := "{u+26a1}" ; (⚡) high voltage sign
1374 cmpDigit2.item["v"] := "{u+26d4}" ; (⛔) no entry
1375 cmpDigit2.item["w"] := "{u+231a}" ; (⌚) watch
1376 cmpDigit2.item["x"] := "{u+231b}" ; (⌛) hourglass
1377
1378 cmpDigit3.item["a"] := "{u+2701}" ; (✁) upper blade scissors
1379 cmpDigit3.item["b"] := "{u+2702}" ; (✂) black scissors
1380 cmpDigit3.item["c"] := "{u+2703}" ; (✃) lower blade scissors
1381 cmpDigit3.item["d"] := "{u+2704}" ; (✄) white scissors
1382 cmpDigit3.item["e"] := "{u+2706}" ; (✆) telephone location sign
1383 cmpDigit3.item["f"] := "{u+2707}" ; (✇) tape drive
1384 cmpDigit3.item["g"] := "{u+2708}" ; (✈) airplane
1385 cmpDigit3.item["h"] := "{u+2709}" ; (✉) envelope
1386 cmpDigit3.item["i"] := "{u+270a}" ; (✊) raised fist
1387 cmpDigit3.item["j"] := "{u+270b}" ; (✋) raised hand
1388 cmpDigit3.item["k"] := "{u+270c}" ; (✌) victory hand
1389 cmpDigit3.item["l"] := "{u+270d}" ; (✍) writing hand
1390 cmpDigit3.item["m"] := "{u+270e}" ; (✎) lower right pencil
1391 cmpDigit3.item["n"] := "{u+270f}" ; (✏) pencil
1392 cmpDigit3.item["o"] := "{u+2710}" ; (✐) upper right pencil
1393 cmpDigit3.item["p"] := "{u+2711}" ; (✑) white nib
1394 cmpDigit3.item["q"] := "{u+2712}" ; (✒) black nib
1395 cmpDigit3.item["r"] := "{u+2713}" ; (✓) check mark
1396 cmpDigit3.item["s"] := "{u+2714}" ; (✔) heavy check mark
1397 cmpDigit3.item["t"] := "{u+2715}" ; (✕) multiplication x
1398 cmpDigit3.item["u"] := "{u+2716}" ; (✖) heavy multiplication x
1399 cmpDigit3.item["v"] := "{u+2717}" ; (✗) ballot x
1400 cmpDigit3.item["w"] := "{u+2718}" ; (✘) heavy ballot x
1401 cmpDigit3.item["x"] := "{u+2719}" ; (✙) outlined Greek cross
1402 cmpDigit3.item["y"] := "{u+271a}" ; (✚) heavy Greek cross
1403 cmpDigit3.item["z"] := "{u+271b}" ; (✛) open centre cross
1404
1405 cmpDigit4.item["a"] := "{u+271c}" ; (✜) heavy open centre cross
1406 cmpDigit4.item["b"] := "{u+271d}" ; (✝) Latin cross
1407 cmpDigit4.item["c"] := "{u+271e}" ; (✞) shadowed white Latin cross
1408 cmpDigit4.item["d"] := "{u+271f}" ; (✟) outlined Latin cross
1409 cmpDigit4.item["e"] := "{u+2720}" ; (✠) Maltese cross
1410 cmpDigit4.item["f"] := "{u+2721}" ; (✡) star of David
1411 cmpDigit4.item["g"] := "{u+2722}" ; (✢) four teardrop-spoked asterisk
1412 cmpDigit4.item["h"] := "{u+2723}" ; (✣) four balloon-spoked asterisk
1413 cmpDigit4.item["i"] := "{u+2724}" ; (✤) heavy four balloon-spoked asterisk
1414 cmpDigit4.item["j"] := "{u+2725}" ; (✥) four club-spoked asterisk
1415 cmpDigit4.item["k"] := "{u+2726}" ; (✦) black four-pointed star
1416 cmpDigit4.item["l"] := "{u+2727}" ; (✧) white four-pointed star
1417 cmpDigit4.item["m"] := "{u+2729}" ; (✩) stress outlined white star
1418 cmpDigit4.item["n"] := "{u+272a}" ; (✪) circled white star
1419 cmpDigit4.item["o"] := "{u+272b}" ; (✫) open centre black star
1420 cmpDigit4.item["p"] := "{u+272c}" ; (✬) black centre white star
1421 cmpDigit4.item["q"] := "{u+272d}" ; (✭) outlined black star
1422 cmpDigit4.item["r"] := "{u+272e}" ; (✮) heavy outlined black star
1423 cmpDigit4.item["s"] := "{u+272f}" ; (✯) pinwheel star
1424 cmpDigit4.item["t"] := "{u+2730}" ; (✰) shadowed white star
1425 cmpDigit4.item["u"] := "{u+2731}" ; (✱) heavy asterisk
1426 cmpDigit4.item["v"] := "{u+2732}" ; (✲) open centre asterisk
1427 cmpDigit4.item["w"] := "{u+2733}" ; (✳) eight-spoked asterisk
1428 cmpDigit4.item["x"] := "{u+2734}" ; (✴) eight-pointed black star
1429 cmpDigit4.item["y"] := "{u+2735}" ; (✵) eight-pointed pinwheel star
1430 cmpDigit4.item["z"] := "{u+2736}" ; (✶) six-pointed black star
1431
1432 cmpDigit5.item["a"] := "{u+2737}" ; (✷) eight-pointed rectilinear black star
1433 cmpDigit5.item["b"] := "{u+2738}" ; (✸) heavy eight-pointed rectilinear black star
1434 cmpDigit5.item["c"] := "{u+2739}" ; (✹) twelve pointed black star
1435 cmpDigit5.item["d"] := "{u+273a}" ; (✺) sixteen-pointed asterisk
1436 cmpDigit5.item["e"] := "{u+273b}" ; (✻) teardrop-spoked asterisk
1437 cmpDigit5.item["f"] := "{u+273c}" ; (✼) open centre teardrop-spoked asterisk
1438 cmpDigit5.item["g"] := "{u+273d}" ; (✽) heavy teardrop-spoked asterisk
1439 cmpDigit5.item["h"] := "{u+273e}" ; (✾) six-petalled black and white florette
1440 cmpDigit5.item["i"] := "{u+273f}" ; (✿) black florette
1441 cmpDigit5.item["j"] := "{u+2740}" ; (❀) white florette
1442 cmpDigit5.item["k"] := "{u+2741}" ; (❁) eight-petalled outlined black florette
1443 cmpDigit5.item["l"] := "{u+2742}" ; (❂) circled open centre eight-pointed star
1444 cmpDigit5.item["m"] := "{u+2743}" ; (❃) heavy teardrop-spoked pinwheel asterisk
1445 cmpDigit5.item["n"] := "{u+2744}" ; (❄) snowflake
1446 cmpDigit5.item["o"] := "{u+2745}" ; (❅) tight trifoliate snowflake
1447 cmpDigit5.item["p"] := "{u+2746}" ; (❆) heavy chevron snowflake
1448 cmpDigit5.item["q"] := "{u+2747}" ; (❇) sparkle
1449 cmpDigit5.item["r"] := "{u+2748}" ; (❈) heavy sparkle
1450 cmpDigit5.item["s"] := "{u+2749}" ; (❉) balloon-spoked asterisk
1451 cmpDigit5.item["t"] := "{u+274a}" ; (❊) eight teardrop-spoked propeller asterisk
1452 cmpDigit5.item["u"] := "{u+274b}" ; (❋) heavy eight teardrop-spoked propeller asterisk
1453 cmpDigit5.item["v"] := "{u+274d}" ; (❍) shadowed white circle
1454 cmpDigit5.item["w"] := "{u+274f}" ; (❏) lower right drop-shadowed white square
1455 cmpDigit5.item["x"] := "{u+2750}" ; (❐) upper right drop-shadowed white square
1456 cmpDigit5.item["y"] := "{u+2751}" ; (❑) lower right shadowed white square
1457 cmpDigit5.item["z"] := "{u+2752}" ; (❒) upper right shadowed white square
1458
1459 cmpDigit6.item["a"] := "{u+2756}" ; (❖) black diamond minus white x
1460 cmpDigit6.item["b"] := "{u+2758}" ; (❘) light vertical bar
1461 cmpDigit6.item["c"] := "{u+2759}" ; (❙) medium vertical bar
1462 cmpDigit6.item["d"] := "{u+275a}" ; (❚) heavy vertical bar
1463 cmpDigit6.item["e"] := "{u+275b}" ; (❛) heavy single turned comma quotation mark ornament
1464 cmpDigit6.item["f"] := "{u+275c}" ; (❜) heavy single comma quotation mark ornament
1465 cmpDigit6.item["g"] := "{u+275d}" ; (❝) heavy double turned comma quotation mark ornament
1466 cmpDigit6.item["h"] := "{u+275e}" ; (❞) heavy double comma quotation mark ornament
1467 cmpDigit6.item["i"] := "{u+275f}" ; (❟) heavy low single comma quotation mark ornament
1468 cmpDigit6.item["j"] := "{u+2760}" ; (❠) heavy low double comma quotation mark ornament
1469 cmpDigit6.item["k"] := "{u+2761}" ; (❡) curved stem paragraph sign ornament
1470 cmpDigit6.item["l"] := "{u+2762}" ; (❢) heavy exclamation mark ornament
1471 cmpDigit6.item["m"] := "{u+2763}" ; (❣) heavy heart exclamation mark ornament
1472 cmpDigit6.item["n"] := "{u+2764}" ; (❤) heavy black heart
1473 cmpDigit6.item["o"] := "{u+2765}" ; (❥) rotated heavy black heart bullet
1474 cmpDigit6.item["p"] := "{u+2766}" ; (❦) floral heart
1475 cmpDigit6.item["q"] := "{u+2767}" ; (❧) rotated floral heart bullet
1476
1477 cmpDigit7.item["a"] := "{u+2794}" ; (➔) heavy wide-headed rightwards arrow
1478 cmpDigit7.item["b"] := "{u+2798}" ; (➘) heavy south east arrow
1479 cmpDigit7.item["c"] := "{u+2799}" ; (➙) heavy rightwards arrow
1480 cmpDigit7.item["d"] := "{u+279a}" ; (➚) heavy north east arrow
1481 cmpDigit7.item["e"] := "{u+279b}" ; (➛) drafting point rightwards arrow
1482 cmpDigit7.item["f"] := "{u+279c}" ; (➜) heavy round-tipped rightwards arrow
1483 cmpDigit7.item["g"] := "{u+279d}" ; (➝) triangle-headed rightwards arrow
1484 cmpDigit7.item["h"] := "{u+279e}" ; (➞) heavy triangle-headed rightwards arrow
1485 cmpDigit7.item["i"] := "{u+279f}" ; (➟) dashed triangle-headed rightwards arrow
1486 cmpDigit7.item["j"] := "{u+27a0}" ; (➠) heavy dashed triangle-headed rightwards arrow
1487 cmpDigit7.item["k"] := "{u+27a1}" ; (➡) black rightwards arrow
1488 cmpDigit7.item["l"] := "{u+27a2}" ; (➢) 3d top-lighted rightwards arrowhead
1489 cmpDigit7.item["m"] := "{u+27a3}" ; (➣) 3d bottom-lighted rightwards arrowhead
1490 cmpDigit7.item["n"] := "{u+27a4}" ; (➤) black rightwards arrowhead
1491 cmpDigit7.item["o"] := "{u+27a5}" ; (➥) heavy black curved downwards and rightwards arrow
1492 cmpDigit7.item["p"] := "{u+27a6}" ; (➦) heavy black curved upwards and rightwards arrow
1493 cmpDigit7.item["q"] := "{u+27a7}" ; (➧) squat black rightwards arrow
1494 cmpDigit7.item["r"] := "{u+27a8}" ; (➨) heavy concave-pointed black rightwards arrow
1495 cmpDigit7.item["s"] := "{u+27a9}" ; (➩) right-shaded white rightwards arrow
1496 cmpDigit7.item["t"] := "{u+27aa}" ; (➪) left-shaded white rightwards arrow
1497 cmpDigit7.item["u"] := "{u+27ab}" ; (➫) back-tilted shadowed white rightwards arrow
1498 cmpDigit7.item["v"] := "{u+27ac}" ; (➬) front-tilted shadowed white rightwards arrow
1499 cmpDigit7.item["w"] := "{u+27ad}" ; (➭) heavy lower right-shadowed white rightwards arrow
1500 cmpDigit7.item["x"] := "{u+27ae}" ; (➮) heavy upper right-shadowed white rightwards arrow
1501 cmpDigit7.item["y"] := "{u+27af}" ; (➯) notched lower right-shadowed white rightwards arrow
1502 cmpDigit7.item["z"] := "{u+27b1}" ; (➱) notched upper right-shadowed white rightwards arrow
1503
1504 cmpDigit8.item["a"] := "{u+27b2}" ; (➲) circled heavy white rightwards arrow
1505 cmpDigit8.item["b"] := "{u+27b3}" ; (➳) white-feathered rightwards arrow
1506 cmpDigit8.item["c"] := "{u+27b4}" ; (➴) black-feathered south east arrow
1507 cmpDigit8.item["d"] := "{u+27b5}" ; (➵) black-feathered rightwards arrow
1508 cmpDigit8.item["e"] := "{u+27b6}" ; (➶) black-feathered north east arrow
1509 cmpDigit8.item["f"] := "{u+27b7}" ; (➷) heavy black-feathered south east arrow
1510 cmpDigit8.item["g"] := "{u+27b8}" ; (➸) heavy black-feathered rightwards arrow
1511 cmpDigit8.item["h"] := "{u+27b9}" ; (➹) heavy black-feathered north east arrow
1512 cmpDigit8.item["i"] := "{u+27ba}" ; (➺) teardrop-barbed rightwards arrow
1513 cmpDigit8.item["j"] := "{u+27bb}" ; (➻) heavy teardrop-shanked rightwards arrow
1514 cmpDigit8.item["k"] := "{u+27bc}" ; (➼) wedge-tailed rightwards arrow
1515 cmpDigit8.item["l"] := "{u+27bd}" ; (➽) heavy wedge-tailed rightwards arrow
1516 cmpDigit8.item["m"] := "{u+27be}" ; (➾) open-outlined rightwards arrow
1517 cmpDigit8.item["n"] := "{u+27c1}" ; (⟁) white triangle containing small white triangle
1518
1519
1520 ; Compose : Dingbat Negative Circled Digits (n)
1521
1522 cmpSmallN.item["1"] := "{u+2776}" ; (❶) dingbat negative circled digit 1
1523 cmpSmallN.item["2"] := "{u+2777}" ; (❷) dingbat negative circled digit 2
1524 cmpSmallN.item["3"] := "{u+2778}" ; (❸) dingbat negative circled digit 3
1525 cmpSmallN.item["4"] := "{u+2779}" ; (❹) dingbat negative circled digit 4
1526 cmpSmallN.item["5"] := "{u+277a}" ; (❺) dingbat negative circled digit 5
1527 cmpSmallN.item["6"] := "{u+277b}" ; (❻) dingbat negative circled digit 6
1528 cmpSmallN.item["7"] := "{u+277c}" ; (❼) dingbat negative circled digit 7
1529 cmpSmallN.item["8"] := "{u+277d}" ; (❽) dingbat negative circled digit 8
1530 cmpSmallN.item["9"] := "{u+277e}" ; (❾) dingbat negative circled digit 9
1531 cmpSmallN.item["0"] := "{u+277f}" ; (❿) dingbat negative circled digit 10
1532
1533
1534 ; Configuration : 'AltGr (RAlt)' and 'AltGr (RAlt) + Shift' modifiers
1535
1536 ; Key : 1
1537 >!sc002::
1538 <^>!sc002::Send {u+00a1} ; (¡) inverted exclamation mark
1539 >!+sc002::
1540 <^>!+sc002::Send {u+00b9} ; (¹) superscript 1
1541
1542 ; Key : 2
1543 >!sc003::
1544 <^>!sc003::Send {u+2264} ; (≤) less-than or equal to
1545 >!+sc003::
1546 <^>!+sc003::Send {u+00b2} ; (²) superscript 2
1547
1548 ; Key : 3
1549 >!sc004::
1550 <^>!sc004::Send {u+2265} ; (≥) greater-than or equal to
1551 >!+sc004::
1552 <^>!+sc004::Send {u+00b3} ; (³) superscript 3
1553
1554 ; Key : 4
1555 >!sc005::
1556 <^>!sc005::Send {u+00a3} ; (£) pound sign
1557 >!+sc005::
1558 <^>!+sc005::Send {u+00a5} ; (¥) yen sign
1559
1560 ; Key : 5
1561 >!sc006::
1562 <^>!sc006::Send {u+20ac} ; (€) euro sign
1563 >!+sc006::
1564 <^>!+sc006::Send {u+00a2} ; (¢) cent sign (dollar)
1565
1566 ; Key : 6
1567 >!sc007::
1568 <^>!sc007::
1569 if GetKeyState("CapsLock", "T")
1570 Send {u+00c3} ; (Ã) A with tilde
1571 else
1572 Send {u+00e3} ; (ã) a with tilde
1573 return
1574 >!+sc007::
1575 <^>!+sc007::
1576 if GetKeyState("CapsLock", "T")
1577 Send {u+00e3} ; (ã) a with tilde
1578 else
1579 Send {u+00c3} ; (Ã) A with tilde
1580 return
1581
1582 ; Key : 7
1583 >!sc008::
1584 <^>!sc008::
1585 if GetKeyState("CapsLock", "T")
1586 Send {u+00d5} ; (Õ) O with tilde
1587 else
1588 Send {u+00f5} ; (õ) o with tilde
1589 return
1590 >!+sc008::
1591 <^>!+sc008::
1592 if GetKeyState("CapsLock", "T")
1593 Send {u+00f5} ; (õ) o with tilde
1594 else
1595 Send {u+00d5} ; (Õ) O with tilde
1596 return
1597
1598 ; Key : 8
1599 >!sc009::
1600 <^>!sc009::Send {u+201e} ; („) double low-9 quotation mark
1601 >!+sc009::
1602 <^>!+sc009::Send {u+00a7} ; (§) section sign
1603
1604 ; Key : 9
1605 >!sc00A::
1606 <^>!sc00A::Send {u+201c} ; (“) left double quotation mark
1607 >!+sc00A::
1608 <^>!+sc00A::Send {u+2018} ; (‘) left single quotation mark
1609
1610 ; Key : 0
1611 >!sc00B::
1612 <^>!sc00B::Send {u+201d} ; (”) right double quotation mark
1613 >!+sc00B::
1614 <^>!+sc00B::Send {u+2019} ; (’) right single quotation mark
1615
1616 ; Key : - / _ (hyphen-minus / underscore)
1617 >!sc00C::
1618 <^>!sc00C::Send {u+2013} ; (–) en dash
1619 >!+sc00C::
1620 <^>!+sc00C::Send {u+2014} ; (—) em dash
1621
1622 ; Key : = / + (equals sign / plus sign)
1623 >!sc00D::
1624 <^>!sc00D::Send {u+00d7} ; (×) multiplication sign
1625 >!+sc00D::
1626 <^>!+sc00D::Send {u+00f7} ; (÷) division sign
1627
1628 ; Key : Q
1629 >!sc010::
1630 <^>!sc010::
1631 if GetKeyState("CapsLock", "T")
1632 Send {u+00c6} ; (Æ) letter AE
1633 else
1634 Send {u+00e6} ; (æ) letter ae
1635 return
1636 >!+sc010::
1637 <^>!+sc010::
1638 if GetKeyState("CapsLock", "T")
1639 Send {u+00e6} ; (æ) letter ae
1640 else
1641 Send {u+00c6} ; (Æ) letter AE
1642 return
1643
1644 ; Key : W
1645 >!sc011::
1646 <^>!sc011::
1647 if GetKeyState("CapsLock", "T")
1648 Send {u+00c5} ; (Å) A with ring above
1649 else
1650 Send {u+00e5} ; (å) a with ring above
1651 return
1652 >!+sc011::
1653 <^>!+sc011::
1654 if GetKeyState("CapsLock", "T")
1655 Send {u+00e5} ; (å) a with ring above
1656 else
1657 Send {u+00c5} ; (Å) A with ring above
1658 return
1659
1660 ; Key : E
1661 >!sc012::
1662 <^>!sc012::
1663 if GetKeyState("CapsLock", "T")
1664 Send {u+00cb} ; (Ë) E with diaeresis
1665 else
1666 Send {u+00eb} ; (ë) e with diaeresis
1667 return
1668 >!+sc012::
1669 <^>!+sc012::
1670 if GetKeyState("CapsLock", "T")
1671 Send {u+00eb} ; (ë) e with diaeresis
1672 else
1673 Send {u+00cb} ; (Ë) E with diaeresis
1674 return
1675
1676 ; Key : R
1677 >!sc013::
1678 <^>!sc013::
1679 if GetKeyState("CapsLock", "T")
1680 Send {u+00ca} ; (Ê) E with circumflex
1681 else
1682 Send {u+00ea} ; (ê) e with circumflex
1683 return
1684 >!+sc013::
1685 <^>!+sc013::
1686 if GetKeyState("CapsLock", "T")
1687 Send {u+00ea} ; (ê) e with circumflex
1688 else
1689 Send {u+00ca} ; (Ê) E with circumflex
1690 return
1691
1692 ; Key : T
1693 >!sc014::
1694 <^>!sc014::
1695 if GetKeyState("CapsLock", "T")
1696 Send {u+00ce} ; (Î) I with circumflex
1697 else
1698 Send {u+00ee} ; (î) i with circumflex
1699 return
1700 >!+sc014::
1701 <^>!+sc014::
1702 if GetKeyState("CapsLock", "T")
1703 Send {u+00ee} ; (î) i with circumflex
1704 else
1705 Send {u+00ce} ; (Î) I with circumflex
1706 return
1707
1708 ; Key : Y
1709 >!sc015::
1710 <^>!sc015::
1711 if GetKeyState("CapsLock", "T")
1712 Send {u+00db} ; (Û) U with circumflex
1713 else
1714 Send {u+00fb} ; (û) u with circumflex
1715 return
1716 >!+sc015::
1717 <^>!+sc015::
1718 if GetKeyState("CapsLock", "T")
1719 Send {u+00fb} ; (û) u with circumflex
1720 else
1721 Send {u+00db} ; (Û) U with circumflex
1722 return
1723
1724 ; Key : U
1725 >!sc016::
1726 <^>!sc016::
1727 if GetKeyState("CapsLock", "T")
1728 Send {u+00dc} ; (Ü) U with diaeresis
1729 else
1730 Send {u+00fc} ; (ü) u with diaeresis
1731 return
1732 >!+sc016::
1733 <^>!+sc016::
1734 if GetKeyState("CapsLock", "T")
1735 Send {u+00fc} ; (ü) u with diaeresis
1736 else
1737 Send {u+00dc} ; (Ü) U with diaeresis
1738 return
1739
1740 ; Key : I
1741 >!sc017::
1742 <^>!sc017::
1743 if GetKeyState("CapsLock", "T")
1744 Send {u+00cf} ; (Ï) I with diaeresis
1745 else
1746 Send {u+00ef} ; (ï) i with diaeresis
1747 return
1748 >!+sc017::
1749 <^>!+sc017::
1750 if GetKeyState("CapsLock", "T")
1751 Send {u+00ef} ; (ï) i with diaeresis
1752 else
1753 Send {u+00cf} ; (Ï) I with diaeresis
1754 return
1755
1756 ; Key : O
1757 >!sc018::
1758 <^>!sc018::
1759 if GetKeyState("CapsLock", "T")
1760 Send {u+00d6} ; (Ö) O with diaeresis
1761 else
1762 Send {u+00f6} ; (ö) o with diaeresis
1763 return
1764 >!+sc018::
1765 <^>!+sc018::
1766 if GetKeyState("CapsLock", "T")
1767 Send {u+00f6} ; (ö) o with diaeresis
1768 else
1769 Send {u+00d6} ; (Ö) O with diaeresis
1770 return
1771
1772 ; Key : P
1773 >!sc019::
1774 <^>!sc019::
1775 if GetKeyState("CapsLock", "T")
1776 Send {u+00d4} ; (Ô) O with circumflex
1777 else
1778 Send {u+00f4} ; (ô) o with circumflex
1779 return
1780 >!+sc019::
1781 <^>!+sc019::
1782 if GetKeyState("CapsLock", "T")
1783 Send {u+00f4} ; (ô) o with circumflex
1784 else
1785 Send {u+00d4} ; (Ô) O with circumflex
1786 return
1787
1788 ; Key : [ / { (left square bracket / left curly bracket)
1789 >!sc01A::
1790 <^>!sc01A::Send {u+00ab} ; («) left-pointing double angle quotation mark
1791 >!+sc01A::
1792 <^>!+sc01A::Send {u+2039} ; (‹) left-pointing single angle quotation mark
1793
1794 ; Key : ] / } (right square bracket / right curly bracket)
1795 >!sc01B::
1796 <^>!sc01B::Send {u+00bb} ; (») right-pointing double angle quotation mark
1797 >!+sc01B::
1798 <^>!+sc01B::Send {u+203a} ; (›) right-pointing single angle quotation mark
1799
1800 ; Key : A
1801 >!sc01E::
1802 <^>!sc01E::
1803 if GetKeyState("CapsLock", "T")
1804 Send {u+00c4} ; (Ä) A with diaeresis
1805 else
1806 Send {u+00e4} ; (ä) a with diaeresis
1807 return
1808 >!+sc01E::
1809 <^>!+sc01E::
1810 if GetKeyState("CapsLock", "T")
1811 Send {u+00e4} ; (ä) a with diaeresis
1812 else
1813 Send {u+00c4} ; (Ä) A with diaeresis
1814 return
1815
1816 ; Key : S
1817 >!sc01F::
1818 <^>!sc01F::
1819 if GetKeyState("CapsLock", "T")
1820 Send {u+1e9e} ; (ẞ) capital sharp S (capital Eszett)
1821 else
1822 Send {u+00df} ; (ß) small sharp s (Eszett)
1823 return
1824 >!+sc01F::
1825 <^>!+sc01F::
1826 if GetKeyState("CapsLock", "T")
1827 Send {u+00df} ; (ß) small sharp s (Eszett)
1828 else
1829 Send {u+1e9e} ; (ẞ) capital sharp S (capital Eszett)
1830 return
1831
1832 ; Key : D
1833 >!sc020::
1834 <^>!sc020::
1835 if GetKeyState("CapsLock", "T")
1836 Send {u+00c2} ; (Â) A with circumflex
1837 else
1838 Send {u+00e2} ; (â) a with circumflex
1839 return
1840 >!+sc020::
1841 <^>!+sc020::
1842 if GetKeyState("CapsLock", "T")
1843 Send {u+00e2} ; (â) a with circumflex
1844 else
1845 Send {u+00c2} ; (Â) A with circumflex
1846 return
1847
1848 ; Key : F
1849 >!sc021::
1850 <^>!sc021::
1851 if GetKeyState("CapsLock", "T")
1852 Send {u+00c9} ; (É) E with acute
1853 else
1854 Send {u+00e9} ; (é) e with acute
1855 return
1856 >!+sc021::
1857 <^>!+sc021::
1858 if GetKeyState("CapsLock", "T")
1859 Send {u+00e9} ; (é) e with acute
1860 else
1861 Send {u+00c9} ; (É) E with acute
1862 return
1863
1864 ; Key : G
1865 >!sc022::
1866 <^>!sc022::
1867 if GetKeyState("CapsLock", "T")
1868 Send {u+00c8} ; (È) E with grave
1869 else
1870 Send {u+00e8} ; (è) e with grave
1871 return
1872 >!+sc022::
1873 <^>!+sc022::
1874 if GetKeyState("CapsLock", "T")
1875 Send {u+00e8} ; (è) e with grave
1876 else
1877 Send {u+00c8} ; (È) E with grave
1878 return
1879
1880 ; Key : H
1881 >!sc023::
1882 <^>!sc023::
1883 if GetKeyState("CapsLock", "T")
1884 Send {u+00da} ; (Ú) U with acute
1885 else
1886 Send {u+00fa} ; (ú) u with acute
1887 return
1888 >!+sc023::
1889 <^>!+sc023::
1890 if GetKeyState("CapsLock", "T")
1891 Send {u+00fa} ; (ú) u with acute
1892 else
1893 Send {u+00da} ; (Ú) U with acute
1894 return
1895
1896 ; Key : J
1897 >!sc024::
1898 <^>!sc024::
1899 if GetKeyState("CapsLock", "T")
1900 Send {u+00d9} ; (Ù) U with grave
1901 else
1902 Send {u+00f9} ; (ù) u with grave
1903 return
1904 >!+sc024::
1905 <^>!+sc024::
1906 if GetKeyState("CapsLock", "T")
1907 Send {u+00f9} ; (ù) u with grave
1908 else
1909 Send {u+00d9} ; (Ù) U with grave
1910 return
1911
1912 ; Key : K
1913 >!sc025::
1914 <^>!sc025::
1915 if GetKeyState("CapsLock", "T")
1916 Send {u+0152} ; (Œ) ligature OE
1917 else
1918 Send {u+0153} ; (œ) ligature oe
1919 return
1920 >!+sc025::
1921 <^>!+sc025::
1922 if GetKeyState("CapsLock", "T")
1923 Send {u+0153} ; (œ) ligature oe
1924 else
1925 Send {u+0152} ; (Œ) ligature OE
1926 return
1927
1928 ; Key : L
1929 >!sc026::
1930 <^>!sc026::
1931 if GetKeyState("CapsLock", "T")
1932 Send {u+00d8} ; (Ø) O with stroke
1933 else
1934 Send {u+00f8} ; (ø) o with stroke
1935 return
1936 >!+sc026::
1937 <^>!+sc026::
1938 if GetKeyState("CapsLock", "T")
1939 Send {u+00f8} ; (ø) o with stroke
1940 else
1941 Send {u+00d8} ; (Ø) O with stroke
1942 return
1943
1944 ; Key : ; / : (semicolon / colon)
1945 >!sc027::
1946 <^>!sc027::Send {u+00b0} ; (°) degree sign
1947 >!+sc027::
1948 <^>!+sc027::Send {u+00b7} ; (·) middle dot
1949
1950 ; Key : ' / " (apostrophe / quotation mark)
1951 >!sc028::
1952 <^>!sc028::Send {u+266a} ; (♪) eighth note
1953 >!+sc028::
1954 <^>!+sc028::Send {u+266b} ; (♫) beamed eighth notes
1955
1956 ; Key : \ / | (backslash / vertical line)
1957 >!sc02B::
1958 <^>!sc02B::Send {u+2002} ; en space
1959 >!+sc02B::
1960 <^>!+sc02B::Send {u+2003} ; em space
1961
1962 ; Key : Z
1963 >!sc02C::
1964 <^>!sc02C::
1965 if GetKeyState("CapsLock", "T")
1966 Send {u+00c1} ; (Á) A with acute
1967 else
1968 Send {u+00e1} ; (á) a with acute
1969 return
1970 >!+sc02C::
1971 <^>!+sc02C::
1972 if GetKeyState("CapsLock", "T")
1973 Send {u+00e1} ; (á) a with acute
1974 else
1975 Send {u+00c1} ; (Á) A with acute
1976 return
1977
1978 ; Key : X
1979 >!sc02D::
1980 <^>!sc02D::
1981 if GetKeyState("CapsLock", "T")
1982 Send {u+00c0} ; (À) A with grave
1983 else
1984 Send {u+00e0} ; (à) a with grave
1985 return
1986 >!+sc02D::
1987 <^>!+sc02D::
1988 if GetKeyState("CapsLock", "T")
1989 Send {u+00e0} ; (à) a with grave
1990 else
1991 Send {u+00c0} ; (À) A with grave
1992 return
1993
1994 ; Key : C
1995 >!sc02E::
1996 <^>!sc02E::
1997 if GetKeyState("CapsLock", "T")
1998 Send {u+00c7} ; (Ç) C with cedilla
1999 else
2000 Send {u+00e7} ; (ç) c with cedilla
2001 return
2002 >!+sc02E::
2003 <^>!+sc02E::
2004 if GetKeyState("CapsLock", "T")
2005 Send {u+00e7} ; (ç) c with cedilla
2006 else
2007 Send {u+00c7} ; (Ç) C with cedilla
2008 return
2009
2010 ; Key : V
2011 >!sc02F::
2012 <^>!sc02F::
2013 if GetKeyState("CapsLock", "T")
2014 Send {u+00cd} ; (Í) I with acute
2015 else
2016 Send {u+00ed} ; (í) i with acute
2017 return
2018 >!+sc02F::
2019 <^>!+sc02F::
2020 if GetKeyState("CapsLock", "T")
2021 Send {u+00ed} ; (í) i with acute
2022 else
2023 Send {u+00cd} ; (Í) I with acute
2024 return
2025
2026 ; Key : B
2027 >!sc030::
2028 <^>!sc030::
2029 if GetKeyState("CapsLock", "T")
2030 Send {u+00cc} ; (Ì) I with grave
2031 else
2032 Send {u+00ec} ; (ì) i with grave
2033 return
2034 >!+sc030::
2035 <^>!+sc030::
2036 if GetKeyState("CapsLock", "T")
2037 Send {u+00ec} ; (ì) i with grave
2038 else
2039 Send {u+00cc} ; (Ì) I with grave
2040 return
2041
2042 ; Key : N
2043 >!sc031::
2044 <^>!sc031::
2045 if GetKeyState("CapsLock", "T")
2046 Send {u+00d1} ; (Ñ) N with tilde
2047 else
2048 Send {u+00f1} ; (ñ) n with tilde
2049 return
2050 >!+sc031::
2051 <^>!+sc031::
2052 if GetKeyState("CapsLock", "T")
2053 Send {u+00f1} ; (ñ) n with tilde
2054 else
2055 Send {u+00d1} ; (Ñ) N with tilde
2056 return
2057
2058 ; Key : M
2059 >!sc032::
2060 <^>!sc032::Send {u+00b5} ; (µ) micro sign
2061 >!+sc032::
2062 <^>!+sc032::Send {u+00b1} ; (±) plus-minus sign
2063
2064 ; Key : , / < (comma / less-than sign)
2065 >!sc033::
2066 <^>!sc033::
2067 if GetKeyState("CapsLock", "T")
2068 Send {u+00d3} ; (Ó) O with acute
2069 else
2070 Send {u+00f3} ; (ó) o with acute
2071 return
2072 >!+sc033::
2073 <^>!+sc033::
2074 if GetKeyState("CapsLock", "T")
2075 Send {u+00f3} ; (ó) o with acute
2076 else
2077 Send {u+00d3} ; (Ó) O with acute
2078 return
2079
2080 ; Key : . / > (period / greater-than sign)
2081 >!sc034::
2082 <^>!sc034::
2083 if GetKeyState("CapsLock", "T")
2084 Send {u+00d2} ; (Ò) O with grave
2085 else
2086 Send {u+00f2} ; (ò) o with grave
2087 return
2088 >!+sc034::
2089 <^>!+sc034::
2090 if GetKeyState("CapsLock", "T")
2091 Send {u+00f2} ; (ò) o with grave
2092 else
2093 Send {u+00d2} ; (Ò) O with grave
2094 return
2095
2096 ; Key : / / ? (slash / question mark)
2097 >!sc035::
2098 <^>!sc035::Send {u+00bf} ; (¿) inverted question mark
2099 >!+sc035::
2100 <^>!+sc035::Send {u+2022} ; (•) bullet
2101
2102 ; Key : (space)
2103 >!sc039::
2104 <^>!sc039::Send {u+00a0} ; non-breaking space (NBSP)
2105 >!+sc039::
2106 <^>!+sc039::Send {u+00a0} ; non-breaking space (NBSP)
2107
2108
2109 ; Configuration : Compose Key Selector
2110
2111 >!sc029::
2112 >!+sc029::
2113 <^>!sc029::
2114 <^>!+sc029::
2115 >!sc056::
2116 >!+sc056::
2117 <^>!sc056::
2118 <^>!+sc056::
2119 Input, keyA, L1, {bs}{del}{esc}{home}{end}
2120 Input, keyB, L1, {bs}{del}{esc}{home}{end}
2121
2122 if (keyA == "a")
2123 Send % cmpSmallA.item[keyB]
2124 else if (keyA == "b")
2125 Send % cmpSmallB.item[keyB]
2126 else if (keyA == "c")
2127 Send % cmpSmallC.item[keyB]
2128 else if (keyA == "d")
2129 Send % cmpSmallD.item[keyB]
2130 else if (keyA == "f")
2131 Send % cmpSmallF.item[keyB]
2132 else if (keyA == "g")
2133 Send % cmpSmallG.item[keyB]
2134 else if (keyA == "h")
2135 Send % cmpSmallH.item[keyB]
2136 else if (keyA == "i")
2137 Send % cmpSmallI.item[keyB]
2138 else if (keyA == "l")
2139 Send % cmpSmallL.item[keyB]
2140 else if (keyA == "m")
2141 Send % cmpSmallM.item[keyB]
2142 else if (keyA == "n")
2143 Send % cmpSmallN.item[keyB]
2144 else if (keyA == "o")
2145 Send % cmpSmallO.item[keyB]
2146 else if (keyA == "p")
2147 Send % cmpSmallP.item[keyB]
2148 else if (keyA == "q")
2149 Send % cmpSmallQ.item[keyB]
2150 else if (keyA == "r")
2151 Send % cmpSmallR.item[keyB]
2152 else if (keyA == "s")
2153 Send % cmpSmallS.item[keyB]
2154 else if (keyA == "t")
2155 Send % cmpSmallT.item[keyB]
2156 else if (keyA == "u")
2157 Send % cmpSmallU.item[keyB]
2158 else if (keyA == "v")
2159 Send % cmpSmallV.item[keyB]
2160 else if (keyA == "x")
2161 Send % cmpSmallX.item[keyB]
2162 else if (keyA == "y")
2163 Send % cmpSmallY.item[keyB]
2164 else if (keyA == "A")
2165 Send % cmpCapitalA.item[keyB]
2166 else if (keyA == "B")
2167 Send % cmpCapitalB.item[keyB]
2168 else if (keyA == "C")
2169 Send % cmpCapitalC.item[keyB]
2170 else if (keyA == "D")
2171 Send % cmpCapitalD.item[keyB]
2172 else if (keyA == "G")
2173 Send % cmpCapitalG.item[keyB]
2174 else if (keyA == "I")
2175 Send % cmpCapitalI.item[keyB]
2176 else if (keyA == "L")
2177 Send % cmpCapitalL.item[keyB]
2178 else if (keyA == "N")
2179 Send % cmpCapitalN.item[keyB]
2180 else if (keyA == "O")
2181 Send % cmpCapitalO.item[keyB]
2182 else if (keyA == "P")
2183 Send % cmpCapitalP.item[keyB]
2184 else if (keyA == "R")
2185 Send % cmpCapitalR.item[keyB]
2186 else if (keyA == "S")
2187 Send % cmpCapitalS.item[keyB]
2188 else if (keyA == "T")
2189 Send % cmpCapitalT.item[keyB]
2190 else if (keyA == "V")
2191 Send % cmpCapitalV.item[keyB]
2192 else if (keyA == "X")
2193 Send % cmpCapitalX.item[keyB]
2194 else if (keyA == "Y")
2195 Send % cmpCapitalY.item[keyB]
2196 else if (keyA == "0")
2197 Send % cmpDigit0.item[keyB]
2198 else if (keyA == "1")
2199 Send % cmpDigit1.item[keyB]
2200 else if (keyA == "2")
2201 Send % cmpDigit2.item[keyB]
2202 else if (keyA == "3")
2203 Send % cmpDigit3.item[keyB]
2204 else if (keyA == "4")
2205 Send % cmpDigit4.item[keyB]
2206 else if (keyA == "5")
2207 Send % cmpDigit5.item[keyB]
2208 else if (keyA == "6")
2209 Send % cmpDigit6.item[keyB]
2210 else if (keyA == "7")
2211 Send % cmpDigit7.item[keyB]
2212 else if (keyA == "8")
2213 Send % cmpDigit8.item[keyB]
2214 else if (keyA == " ")
2215 Send % cmpSpace.item[keyB]
2216 else if (keyA == "!")
2217 Send % cmpExclam.item[keyB]
2218 else if (keyA == chr(34))
2219 Send % cmpQuote.item[keyB]
2220 else if (keyA == "$")
2221 Send % cmpDollar.item[keyB]
2222 else if (keyA == "%")
2223 Send % cmpPercent.item[keyB]
2224 else if (keyA == "'")
2225 Send % cmpApostrophe.item[keyB]
2226 else if (keyA == "(")
2227 Send % cmpParenLeft.item[keyB]
2228 else if (keyA == "*")
2229 Send % cmpAsterisk.item[keyB]
2230 else if (keyA == "+")
2231 Send % cmpPlus.item[keyB]
2232 else if (keyA == ",")
2233 Send % cmpComma.item[keyB]
2234 else if (keyA == "-")
2235 Send % cmpMinus.item[keyB]
2236 else if (keyA == ".")
2237 Send % cmpPeriod.item[keyB]
2238 else if (keyA == "/")
2239 Send % cmpSlash.item[keyB]
2240 else if (keyA == ";")
2241 Send % cmpSemicolon.item[keyB]
2242 else if (keyA == "<")
2243 Send % cmpLess.item[keyB]
2244 else if (keyA == "=")
2245 Send % cmpEquals.item[keyB]
2246 else if (keyA == ">")
2247 Send % cmpGreater.item[keyB]
2248 else if (keyA == "?")
2249 Send % cmpQuestion.item[keyB]
2250 else if (keyA == "[")
2251 Send % cmpBracketLeft.item[keyB]
2252 else if (keyA == "\")
2253 Send % cmpBackslash.item[keyB]
2254 else if (keyA == "]")
2255 Send % cmpBracketRight.item[keyB]
2256 else if (keyA == "_")
2257 Send % cmpUnderscore.item[keyB]
2258 else if (keyA == "``")
2259 Send % cmpGrave.item[keyB]
2260 else if (keyA == "|")
2261 Send % cmpVerticalLine.item[keyB]
2262 else if (keyA == "~")
2263 Send % cmpTilde.item[keyB]
2264
2265 keyA := "" ; avoids leaking content via debug properties
2266 keyB := "" ; avoids leaking content via debug properties
2267 return